├── .gitignore ├── .travis.yml ├── AUTHORS ├── LICENSE ├── NOTICE ├── README.md ├── RELEASE_NOTES.md ├── checkstyle ├── LICENSE_HEADER ├── checkstyle-other.xml ├── checkstyle-src.xml └── suppressions-src.xml ├── core ├── pom.xml └── src │ ├── main │ └── java │ │ └── org │ │ └── semarglproject │ │ ├── rdf │ │ ├── ParseException.java │ │ └── ProcessorGraphHandler.java │ │ ├── ri │ │ ├── MalformedCurieException.java │ │ ├── MalformedIriException.java │ │ └── RIUtils.java │ │ ├── sink │ │ ├── CharOutputSink.java │ │ ├── CharSink.java │ │ ├── DataSink.java │ │ ├── Pipe.java │ │ ├── QuadSink.java │ │ ├── TripleSink.java │ │ └── XmlSink.java │ │ ├── source │ │ ├── AbstractSource.java │ │ ├── BaseStreamProcessor.java │ │ ├── CharSource.java │ │ ├── StreamProcessor.java │ │ └── XmlSource.java │ │ ├── vocab │ │ └── RDF.java │ │ └── xml │ │ └── XmlUtils.java │ └── test │ └── java │ └── org │ └── semarglproject │ └── test │ ├── SesameTestHelper.java │ └── TestNGHelper.java ├── examples ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── semarglproject │ │ └── example │ │ ├── BenchmarkJsonLd.java │ │ ├── BenchmarkRdfXml.java │ │ ├── BenchmarkRdfa.java │ │ └── RdfaProcessorEndpoint.java │ └── resources │ └── WordNet_small.xml ├── jsonld ├── pom.xml ├── src │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── semarglproject │ │ │ ├── jsonld │ │ │ ├── DocumentContext.java │ │ │ ├── EvalContext.java │ │ │ ├── JsonLdContentHandler.java │ │ │ └── JsonLdParser.java │ │ │ └── vocab │ │ │ └── JsonLd.java │ └── test │ │ ├── java │ │ └── org │ │ │ └── semarglproject │ │ │ └── jsonld │ │ │ └── JsonLdParserTest.java │ │ └── resources │ │ ├── fetch_tests.sparql │ │ ├── json-ld-org │ │ ├── Manifest.ttl │ │ ├── normalize-0001-in.jsonld │ │ ├── normalize-0001-out.nq │ │ ├── normalize-0002-in.jsonld │ │ ├── normalize-0002-out.nq │ │ ├── normalize-0003-in.jsonld │ │ ├── normalize-0003-out.nq │ │ ├── normalize-0004-in.jsonld │ │ ├── normalize-0004-out.nq │ │ ├── normalize-0005-in.jsonld │ │ ├── normalize-0005-out.nq │ │ ├── normalize-0006-in.jsonld │ │ ├── normalize-0006-out.nq │ │ ├── normalize-0007-in.jsonld │ │ ├── normalize-0007-out.nq │ │ ├── normalize-0008-in.jsonld │ │ ├── normalize-0008-out.nq │ │ ├── normalize-0009-in.jsonld │ │ ├── normalize-0009-out.nq │ │ ├── normalize-0010-in.jsonld │ │ ├── normalize-0010-out.nq │ │ ├── normalize-0011-in.jsonld │ │ ├── normalize-0011-out.nq │ │ ├── normalize-0012-in.jsonld │ │ ├── normalize-0012-out.nq │ │ ├── normalize-0013-in.jsonld │ │ ├── normalize-0013-out.nq │ │ ├── normalize-0014-in.jsonld │ │ ├── normalize-0014-out.nq │ │ ├── normalize-0015-in.jsonld │ │ ├── normalize-0015-out.nq │ │ ├── normalize-0016-in.jsonld │ │ ├── normalize-0016-out.nq │ │ ├── normalize-0017-in.jsonld │ │ ├── normalize-0017-out.nq │ │ ├── normalize-0018-in.jsonld │ │ ├── normalize-0018-out.nq │ │ ├── normalize-0019-in.jsonld │ │ ├── normalize-0019-out.nq │ │ ├── normalize-0020-in.jsonld │ │ ├── normalize-0020-out.nq │ │ ├── normalize-0021-in.jsonld │ │ ├── normalize-0021-out.nq │ │ ├── normalize-0022-in.jsonld │ │ ├── normalize-0022-out.nq │ │ ├── normalize-0023-in.jsonld │ │ ├── normalize-0023-out.nq │ │ ├── normalize-0024-in.jsonld │ │ ├── normalize-0024-out.nq │ │ ├── normalize-0025-in.jsonld │ │ ├── normalize-0025-out.nq │ │ ├── normalize-0026-in.jsonld │ │ ├── normalize-0026-out.nq │ │ ├── normalize-0027-in.jsonld │ │ ├── normalize-0027-out.nq │ │ ├── normalize-0028-in.jsonld │ │ ├── normalize-0028-out.nq │ │ ├── normalize-0029-in.jsonld │ │ ├── normalize-0029-out.nq │ │ ├── normalize-0030-in.jsonld │ │ ├── normalize-0030-out.nq │ │ ├── normalize-0031-in.jsonld │ │ ├── normalize-0031-out.nq │ │ ├── normalize-0032-in.jsonld │ │ ├── normalize-0032-out.nq │ │ ├── normalize-0033-in.jsonld │ │ ├── normalize-0033-out.nq │ │ ├── normalize-0034-in.jsonld │ │ ├── normalize-0034-out.nq │ │ ├── normalize-0035-in.jsonld │ │ ├── normalize-0035-out.nq │ │ ├── normalize-0036-in.jsonld │ │ ├── normalize-0036-out.nq │ │ ├── normalize-0037-in.jsonld │ │ ├── normalize-0037-out.nq │ │ ├── normalize-0038-in.jsonld │ │ ├── normalize-0038-out.nq │ │ ├── normalize-0039-in.jsonld │ │ ├── normalize-0039-out.nq │ │ ├── normalize-0040-in.jsonld │ │ ├── normalize-0040-out.nq │ │ ├── normalize-0041-in.jsonld │ │ ├── normalize-0041-out.nq │ │ ├── normalize-0042-in.jsonld │ │ ├── normalize-0042-out.nq │ │ ├── normalize-0043-in.jsonld │ │ ├── normalize-0043-out.nq │ │ ├── normalize-0044-in.jsonld │ │ ├── normalize-0044-out.nq │ │ ├── normalize-0045-in.jsonld │ │ ├── normalize-0045-out.nq │ │ ├── normalize-0046-in.jsonld │ │ ├── normalize-0046-out.nq │ │ ├── normalize-0047-in.jsonld │ │ ├── normalize-0047-out.nq │ │ ├── normalize-0048-in.jsonld │ │ ├── normalize-0048-out.nq │ │ ├── normalize-0049-in.jsonld │ │ ├── normalize-0049-out.nq │ │ ├── normalize-0050-in.jsonld │ │ ├── normalize-0050-out.nq │ │ ├── normalize-0051-in.jsonld │ │ ├── normalize-0051-out.nq │ │ ├── normalize-0052-in.jsonld │ │ ├── normalize-0052-out.nq │ │ ├── normalize-0053-in.jsonld │ │ ├── normalize-0053-out.nq │ │ ├── normalize-0054-in.jsonld │ │ ├── normalize-0054-out.nq │ │ ├── normalize-0055-in.jsonld │ │ ├── normalize-0055-out.nq │ │ ├── normalize-0056-in.jsonld │ │ ├── normalize-0056-out.nq │ │ ├── normalize-0057-in.jsonld │ │ ├── normalize-0057-out.nq │ │ ├── toRdf-0001-in.jsonld │ │ ├── toRdf-0001-out.nq │ │ ├── toRdf-0002-in.jsonld │ │ ├── toRdf-0002-out.nq │ │ ├── toRdf-0003-in.jsonld │ │ ├── toRdf-0003-out.nq │ │ ├── toRdf-0004-in.jsonld │ │ ├── toRdf-0004-out.nq │ │ ├── toRdf-0005-in.jsonld │ │ ├── toRdf-0005-out.nq │ │ ├── toRdf-0006-in.jsonld │ │ ├── toRdf-0006-out.nq │ │ ├── toRdf-0007-in.jsonld │ │ ├── toRdf-0007-out.nq │ │ ├── toRdf-0008-in.jsonld │ │ ├── toRdf-0008-out.nq │ │ ├── toRdf-0009-in.jsonld │ │ ├── toRdf-0009-out.nq │ │ ├── toRdf-0010-in.jsonld │ │ ├── toRdf-0010-out.nq │ │ ├── toRdf-0011-in.jsonld │ │ ├── toRdf-0011-out.nq │ │ ├── toRdf-0012-in.jsonld │ │ ├── toRdf-0012-out.nq │ │ ├── toRdf-0013-in.jsonld │ │ ├── toRdf-0013-out.nq │ │ ├── toRdf-0014-in.jsonld │ │ ├── toRdf-0014-out.nq │ │ ├── toRdf-0015-in.jsonld │ │ ├── toRdf-0015-out.nq │ │ ├── toRdf-0016-in.jsonld │ │ ├── toRdf-0016-out.nq │ │ ├── toRdf-0017-in.jsonld │ │ ├── toRdf-0017-out.nq │ │ ├── toRdf-0018-in.jsonld │ │ ├── toRdf-0018-out.nq │ │ ├── toRdf-0019-in.jsonld │ │ ├── toRdf-0019-out.nq │ │ ├── toRdf-0020-in.jsonld │ │ ├── toRdf-0020-out.nq │ │ ├── toRdf-0022-in.jsonld │ │ ├── toRdf-0022-out.nq │ │ ├── toRdf-0023-in.jsonld │ │ ├── toRdf-0023-out.nq │ │ ├── toRdf-0024-in.jsonld │ │ ├── toRdf-0024-out.nq │ │ ├── toRdf-0025-in.jsonld │ │ ├── toRdf-0025-out.nq │ │ ├── toRdf-0026-in.jsonld │ │ ├── toRdf-0026-out.nq │ │ ├── toRdf-0027-in.jsonld │ │ ├── toRdf-0027-out.nq │ │ ├── toRdf-0028-in.jsonld │ │ ├── toRdf-0028-out.nq │ │ ├── toRdf-0029-in.jsonld │ │ ├── toRdf-0029-out.nq │ │ ├── toRdf-0030-in.jsonld │ │ ├── toRdf-0030-out.nq │ │ ├── toRdf-0031-in.jsonld │ │ ├── toRdf-0031-out.nq │ │ ├── toRdf-0032-in.jsonld │ │ ├── toRdf-0032-out.nq │ │ ├── toRdf-0033-in.jsonld │ │ ├── toRdf-0033-out.nq │ │ ├── toRdf-0034-in.jsonld │ │ ├── toRdf-0034-out.nq │ │ ├── toRdf-0035-in.jsonld │ │ ├── toRdf-0035-out.nq │ │ ├── toRdf-0036-in.jsonld │ │ ├── toRdf-0036-out.nq │ │ ├── toRdf-0037-in.jsonld │ │ ├── toRdf-0037-out.nq │ │ ├── toRdf-0038-in.jsonld │ │ ├── toRdf-0038-out.nq │ │ ├── toRdf-0039-in.jsonld │ │ ├── toRdf-0039-out.nq │ │ ├── toRdf-0040-in.jsonld │ │ ├── toRdf-0040-out.nq │ │ ├── toRdf-0041-in.jsonld │ │ ├── toRdf-0041-out.nq │ │ ├── toRdf-0042-in.jsonld │ │ ├── toRdf-0042-out.nq │ │ ├── toRdf-0043-in.jsonld │ │ ├── toRdf-0043-out.nq │ │ ├── toRdf-0044-in.jsonld │ │ ├── toRdf-0044-out.nq │ │ ├── toRdf-0045-in.jsonld │ │ ├── toRdf-0045-out.nq │ │ ├── toRdf-0046-in.jsonld │ │ ├── toRdf-0046-out.nq │ │ ├── toRdf-0047-in.jsonld │ │ ├── toRdf-0047-out.nq │ │ ├── toRdf-0048-in.jsonld │ │ ├── toRdf-0048-out.nq │ │ ├── toRdf-0049-in.jsonld │ │ ├── toRdf-0049-out.nq │ │ ├── toRdf-0050-in.jsonld │ │ ├── toRdf-0050-out.nq │ │ ├── toRdf-0051-in.jsonld │ │ ├── toRdf-0051-out.nq │ │ ├── toRdf-0052-in.jsonld │ │ ├── toRdf-0052-out.nq │ │ ├── toRdf-0053-in.jsonld │ │ ├── toRdf-0053-out.nq │ │ ├── toRdf-0054-in.jsonld │ │ ├── toRdf-0054-out.nq │ │ ├── toRdf-0055-in.jsonld │ │ ├── toRdf-0055-out.nq │ │ ├── toRdf-0056-in.jsonld │ │ ├── toRdf-0056-out.nq │ │ ├── toRdf-0057-in.jsonld │ │ ├── toRdf-0057-out.nq │ │ ├── toRdf-0058-in.jsonld │ │ ├── toRdf-0058-out.nq │ │ ├── toRdf-0059-in.jsonld │ │ ├── toRdf-0059-out.nq │ │ ├── toRdf-0060-in.jsonld │ │ ├── toRdf-0060-out.nq │ │ ├── toRdf-0061-in.jsonld │ │ ├── toRdf-0061-out.nq │ │ ├── toRdf-0062-in.jsonld │ │ ├── toRdf-0062-out.nq │ │ ├── toRdf-0063-in.jsonld │ │ ├── toRdf-0063-out.nq │ │ ├── toRdf-0064-in.jsonld │ │ ├── toRdf-0064-out.nq │ │ ├── toRdf-0065-in.jsonld │ │ ├── toRdf-0065-out.nq │ │ ├── toRdf-0066-in.jsonld │ │ ├── toRdf-0066-out.nq │ │ ├── toRdf-0067-in.jsonld │ │ ├── toRdf-0067-out.nq │ │ ├── toRdf-0068-in.jsonld │ │ ├── toRdf-0068-out.nq │ │ ├── toRdf-0069-in.jsonld │ │ ├── toRdf-0069-out.nq │ │ ├── toRdf-0070-in.jsonld │ │ ├── toRdf-0070-out.nq │ │ ├── toRdf-0071-in.jsonld │ │ ├── toRdf-0071-out.nq │ │ ├── toRdf-0072-in.jsonld │ │ ├── toRdf-0072-out.nq │ │ ├── toRdf-0073-in.jsonld │ │ ├── toRdf-0073-out.nq │ │ ├── toRdf-0074-in.jsonld │ │ ├── toRdf-0074-out.nq │ │ ├── toRdf-0075-in.jsonld │ │ ├── toRdf-0075-out.nq │ │ ├── toRdf-0076-in.jsonld │ │ ├── toRdf-0076-out.nq │ │ ├── toRdf-0077-in.jsonld │ │ ├── toRdf-0077-out.nq │ │ ├── toRdf-0078-in.jsonld │ │ ├── toRdf-0078-out.nq │ │ ├── toRdf-0079-in.jsonld │ │ ├── toRdf-0079-out.nq │ │ ├── toRdf-0080-in.jsonld │ │ ├── toRdf-0080-out.nq │ │ ├── toRdf-0081-in.jsonld │ │ ├── toRdf-0081-out.nq │ │ ├── toRdf-0082-in.jsonld │ │ ├── toRdf-0082-out.nq │ │ ├── toRdf-0083-in.jsonld │ │ ├── toRdf-0083-out.nq │ │ ├── toRdf-0084-in.jsonld │ │ ├── toRdf-0084-out.nq │ │ ├── toRdf-0085-in.jsonld │ │ ├── toRdf-0085-out.nq │ │ ├── toRdf-0086-in.jsonld │ │ ├── toRdf-0086-out.nq │ │ ├── toRdf-0087-in.jsonld │ │ ├── toRdf-0087-out.nq │ │ ├── toRdf-0088-in.jsonld │ │ ├── toRdf-0088-out.nq │ │ ├── toRdf-0089-in.jsonld │ │ ├── toRdf-0089-out.nq │ │ ├── toRdf-0090-in.jsonld │ │ ├── toRdf-0090-out.nq │ │ ├── toRdf-0091-in.jsonld │ │ ├── toRdf-0091-out.nq │ │ ├── toRdf-0092-in.jsonld │ │ ├── toRdf-0092-out.nq │ │ ├── toRdf-0093-in.jsonld │ │ ├── toRdf-0093-out.nq │ │ ├── toRdf-0094-in.jsonld │ │ ├── toRdf-0094-out.nq │ │ ├── toRdf-0095-in.jsonld │ │ ├── toRdf-0095-out.nq │ │ ├── toRdf-0096-in.jsonld │ │ ├── toRdf-0096-out.nq │ │ ├── toRdf-0097-in.jsonld │ │ ├── toRdf-0097-out.nq │ │ ├── toRdf-0098-in.jsonld │ │ ├── toRdf-0098-out.nq │ │ ├── toRdf-0099-in.jsonld │ │ ├── toRdf-0099-out.nq │ │ ├── toRdf-0100-in.jsonld │ │ ├── toRdf-0100-out.nq │ │ ├── toRdf-0101-in.jsonld │ │ ├── toRdf-0101-out.nq │ │ ├── toRdf-0102-in.jsonld │ │ ├── toRdf-0102-out.nq │ │ ├── toRdf-0103-in.jsonld │ │ ├── toRdf-0103-out.nq │ │ ├── toRdf-0104-in.jsonld │ │ ├── toRdf-0104-out.nq │ │ ├── toRdf-0105-in.jsonld │ │ ├── toRdf-0105-out.nq │ │ ├── toRdf-0106-in.jsonld │ │ ├── toRdf-0106-out.nq │ │ ├── toRdf-0107-in.jsonld │ │ ├── toRdf-0107-out.nq │ │ ├── toRdf-0108-in.jsonld │ │ ├── toRdf-0108-out.nq │ │ ├── toRdf-0109-in.jsonld │ │ ├── toRdf-0109-out.nq │ │ ├── toRdf-0110-in.jsonld │ │ ├── toRdf-0110-out.nq │ │ ├── toRdf-0111-in.jsonld │ │ ├── toRdf-0111-out.nq │ │ ├── toRdf-0112-in.jsonld │ │ ├── toRdf-0112-out.nq │ │ ├── toRdf-0113-in.jsonld │ │ ├── toRdf-0113-out.nq │ │ ├── toRdf-0114-in.jsonld │ │ ├── toRdf-0114-out.nq │ │ ├── toRdf-0115-in.jsonld │ │ ├── toRdf-0115-out.nq │ │ ├── toRdf-0116-in.jsonld │ │ ├── toRdf-0116-out.nq │ │ ├── toRdf-0117-in.jsonld │ │ ├── toRdf-0117-out.nq │ │ ├── toRdf-0118-in.jsonld │ │ ├── toRdf-0118-out.nq │ │ ├── toRdf-0119-in.jsonld │ │ ├── toRdf-0119-out.nq │ │ ├── toRdf-1001-in.jsonld │ │ ├── toRdf-1001-out.nq │ │ ├── toRdf-1002-in.jsonld │ │ └── toRdf-1002-out.nq │ │ └── log4j.properties └── testng.xml ├── pom.xml ├── rdf ├── pom.xml ├── src │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── semarglproject │ │ │ ├── rdf │ │ │ ├── NQuadsParser.java │ │ │ ├── NQuadsSerializer.java │ │ │ ├── NTriplesParser.java │ │ │ ├── NTriplesSerializer.java │ │ │ ├── RdfXmlParser.java │ │ │ └── TurtleSerializer.java │ │ │ └── vocab │ │ │ ├── RDFS.java │ │ │ └── XSD.java │ └── test │ │ ├── java │ │ └── org │ │ │ └── semarglproject │ │ │ └── rdf │ │ │ ├── NTriplesParserTest.java │ │ │ └── RdfXmlParserTest.java │ │ └── resources │ │ ├── arp │ │ ├── Manifest.rdf │ │ ├── comments │ │ │ ├── test01.rdf │ │ │ ├── test02.rdf │ │ │ ├── test03.rdf │ │ │ ├── test04.rdf │ │ │ ├── test05.rdf │ │ │ ├── test06.rdf │ │ │ ├── test07.rdf │ │ │ ├── test08.rdf │ │ │ ├── test09.rdf │ │ │ ├── test0X.nt │ │ │ ├── test10.rdf │ │ │ ├── test11.rdf │ │ │ ├── test12.rdf │ │ │ ├── test13.rdf │ │ │ └── test1X.nt │ │ ├── dom │ │ │ ├── domtest.nt │ │ │ └── domtest.rdf │ │ ├── error-msgs │ │ │ ├── test01.rdf │ │ │ ├── test02.rdf │ │ │ ├── test03.rdf │ │ │ ├── test04.rdf │ │ │ ├── test05.rdf │ │ │ ├── test06.rdf │ │ │ ├── test07.rdf │ │ │ └── testutf8.rdf │ │ ├── gc │ │ │ └── someWordNet.rdf │ │ ├── i18n │ │ │ ├── arabic-macarabic.rdf │ │ │ ├── arabic-utf8.rdf │ │ │ ├── arabic-windows-1256.rdf │ │ │ ├── badbom16be.rdf │ │ │ ├── badbom16le.rdf │ │ │ ├── badbom8.rdf │ │ │ ├── bom.nt │ │ │ ├── bom16be.rdf │ │ │ ├── bom16le.rdf │ │ │ ├── bom8.rdf │ │ │ ├── eq-bug73_0.rdf │ │ │ ├── eq-bug73_1.rdf │ │ │ ├── eq-bug73_2.rdf │ │ │ ├── i18nID.rdf │ │ │ ├── icubug.rdf │ │ │ ├── icubugtwo.rdf │ │ │ ├── latin1.rdf │ │ │ ├── macroman.rdf │ │ │ ├── t9000.nt │ │ │ └── t9000.rdf │ │ ├── parsetype │ │ │ ├── bug68_0.nt │ │ │ └── bug68_0.rdf │ │ ├── qname-in-ID │ │ │ ├── bug74_0.nt │ │ │ └── bug74_0.rdf │ │ ├── rdf-nnn │ │ │ ├── bad-bug67_0.nt │ │ │ ├── bad-bug67_0.rdf │ │ │ ├── bad-bug67_1.rdf │ │ │ ├── bad-bug67_2.rdf │ │ │ ├── bad-bug67_3.rdf │ │ │ ├── bad-bug67_4.rdf │ │ │ ├── bad-bug67_5.nt │ │ │ ├── bad-bug67_5.rdf │ │ │ ├── bad-bug67_6.nt │ │ │ ├── bad-bug67_6.rdf │ │ │ ├── bad-bug67_7.nt │ │ │ ├── bad-bug67_7.rdf │ │ │ ├── bad-bug67_8.nt │ │ │ ├── bad-bug67_8.rdf │ │ │ ├── bad-bug67_9.nt │ │ │ └── bad-bug67_9.rdf │ │ ├── relative-namespaces │ │ │ └── bad-bug50_0.rdf │ │ ├── rfc2396-issue │ │ │ ├── bug51_0.nt │ │ │ ├── bug51_0.rdf │ │ │ ├── fileURI.nt │ │ │ └── fileURI.rdf │ │ ├── scope │ │ │ ├── test01.rdf │ │ │ ├── test02.rdf │ │ │ ├── test03.rdf │ │ │ ├── test04.rdf │ │ │ ├── test05.rdf │ │ │ └── test06.rdf │ │ ├── syntax-errors │ │ │ ├── error001-bad.nt │ │ │ ├── error001-good.nt │ │ │ ├── error001.rdf │ │ │ ├── error002-bad.nt │ │ │ ├── error002-good.nt │ │ │ ├── error002.rdf │ │ │ ├── error003-bad.nt │ │ │ ├── error003-good.nt │ │ │ └── error003.rdf │ │ ├── tainting │ │ │ ├── base-bad.nt │ │ │ ├── base-good.nt │ │ │ ├── base-with-bad-base-bad.nt │ │ │ ├── base-with-bad-base-good.nt │ │ │ ├── base.rdf │ │ │ ├── collection-bad.nt │ │ │ ├── collection-good.nt │ │ │ ├── collection.rdf │ │ │ ├── damlcollection-bad.nt │ │ │ ├── damlcollection-good.nt │ │ │ ├── damlcollection.rdf │ │ │ ├── lang-bad.nt │ │ │ ├── lang-good.nt │ │ │ ├── lang.rdf │ │ │ ├── propValueA-bad.nt │ │ │ ├── propValueA-good.nt │ │ │ ├── propValueA.rdf │ │ │ ├── propValueB-bad.nt │ │ │ ├── propValueB-good.nt │ │ │ ├── propValueB.rdf │ │ │ ├── propValueC-bad.nt │ │ │ ├── propValueC-good.nt │ │ │ ├── propValueC.rdf │ │ │ ├── propValueD-bad.nt │ │ │ ├── propValueD-good.nt │ │ │ ├── propValueD.rdf │ │ │ ├── propValueE-bad.nt │ │ │ ├── propValueE-good.nt │ │ │ ├── propValueE.rdf │ │ │ ├── property-bad.nt │ │ │ ├── property-good.nt │ │ │ ├── property.rdf │ │ │ ├── ptUnknown-bad.nt │ │ │ ├── ptUnknown-good.nt │ │ │ ├── ptUnknown.rdf │ │ │ ├── typedLiteral-bad.nt │ │ │ ├── typedLiteral-good.nt │ │ │ ├── typedLiteral.rdf │ │ │ ├── typedNode-bad.nt │ │ │ ├── typedNode-good.nt │ │ │ └── typedNode.rdf │ │ ├── unqualified │ │ │ ├── attribute.rdf │ │ │ ├── property.rdf │ │ │ ├── relative-namespace.rdf │ │ │ ├── same-doc-namespace.rdf │ │ │ └── typedNode.rdf │ │ ├── xml-literals │ │ │ ├── html.nt │ │ │ ├── html.rdf │ │ │ ├── owls.rdf │ │ │ ├── reported1.nt │ │ │ ├── reported1.rdf │ │ │ ├── reported2.nt │ │ │ ├── reported2.rdf │ │ │ ├── reported3.nt │ │ │ └── reported3.rdf │ │ ├── xmlbase │ │ │ ├── danbri.nt │ │ │ └── danbri.rdf │ │ └── xmlns │ │ │ ├── bad01.rdf │ │ │ ├── food.rdf │ │ │ ├── test01.rdf │ │ │ ├── test02.rdf │ │ │ ├── test03.rdf │ │ │ ├── test0X.nt │ │ │ └── wine.rdf │ │ ├── fetch_ntriples_tests.sparql │ │ ├── fetch_rdfxml_tests.sparql │ │ ├── log4j.properties │ │ └── w3c │ │ ├── Manifest.rdf │ │ ├── amp-in-url │ │ ├── test001.nt │ │ └── test001.rdf │ │ ├── datatypes-intensional │ │ ├── test001.nt │ │ └── test002.nt │ │ ├── datatypes │ │ ├── test001.nt │ │ ├── test001.rdf │ │ ├── test002.nt │ │ ├── test002.rdf │ │ ├── test002b.nt │ │ ├── test003a.nt │ │ ├── test003b.nt │ │ ├── test004a.nt │ │ ├── test004b.nt │ │ ├── test004c.nt │ │ ├── test005a.nt │ │ ├── test005b.nt │ │ ├── test006.nt │ │ ├── test007a.nt │ │ ├── test007b.nt │ │ ├── test008a.nt │ │ ├── test008b.nt │ │ ├── test009a.nt │ │ ├── test009b.nt │ │ ├── test010.nt │ │ ├── test011a.nt │ │ └── test011b.nt │ │ ├── horst-01 │ │ ├── test001.rdf │ │ ├── test002.rdf │ │ ├── test003.rdf │ │ └── test004.rdf │ │ ├── pfps-10 │ │ ├── test001a.nt │ │ └── test001b.nt │ │ ├── rdf-charmod-literals │ │ ├── error001.rdf │ │ ├── error002.rdf │ │ ├── test001.nt │ │ └── test001.rdf │ │ ├── rdf-charmod-uris │ │ ├── error001.rdf │ │ ├── test001.nt │ │ ├── test001.rdf │ │ ├── test002.nt │ │ └── test002.rdf │ │ ├── rdf-containers-syntax-vs-schema │ │ ├── error001.rdf │ │ ├── error002.rdf │ │ ├── test001.nt │ │ ├── test001.rdf │ │ ├── test002.nt │ │ ├── test002.rdf │ │ ├── test003.nt │ │ ├── test003.rdf │ │ ├── test004.nt │ │ ├── test004.rdf │ │ ├── test005.nt │ │ ├── test005.rdf │ │ ├── test006.nt │ │ ├── test006.rdf │ │ ├── test007.nt │ │ ├── test007.rdf │ │ ├── test008.nt │ │ └── test008.rdf │ │ ├── rdf-element-not-mandatory │ │ ├── test001.nt │ │ └── test001.rdf │ │ ├── rdf-ns-prefix-confusion │ │ ├── error0001.rdf │ │ ├── error0002.rdf │ │ ├── error0003.rdf │ │ ├── error0004.rdf │ │ ├── error0005.rdf │ │ ├── error0006.rdf │ │ ├── error0007.rdf │ │ ├── error0008.rdf │ │ ├── error0009.rdf │ │ ├── test0001.nt │ │ ├── test0001.rdf │ │ ├── test0002.nt │ │ ├── test0002.rdf │ │ ├── test0003.nt │ │ ├── test0003.rdf │ │ ├── test0004.nt │ │ ├── test0004.rdf │ │ ├── test0005.nt │ │ ├── test0005.rdf │ │ ├── test0006.nt │ │ ├── test0006.rdf │ │ ├── test0007.nt │ │ ├── test0007.rdf │ │ ├── test0008.nt │ │ ├── test0008.rdf │ │ ├── test0009.nt │ │ ├── test0009.rdf │ │ ├── test0010.nt │ │ ├── test0010.rdf │ │ ├── test0011.nt │ │ ├── test0011.rdf │ │ ├── test0012.nt │ │ ├── test0012.rdf │ │ ├── test0013.nt │ │ ├── test0013.rdf │ │ ├── test0014.nt │ │ └── test0014.rdf │ │ ├── rdfms-abouteach │ │ ├── error001.rdf │ │ └── error002.rdf │ │ ├── rdfms-difference-between-ID-and-about │ │ ├── error1.rdf │ │ ├── test1.nt │ │ ├── test1.rdf │ │ ├── test2.nt │ │ ├── test2.rdf │ │ ├── test3.nt │ │ └── test3.rdf │ │ ├── rdfms-duplicate-member-props │ │ ├── test001.nt │ │ └── test001.rdf │ │ ├── rdfms-empty-property-elements │ │ ├── error001.rdf │ │ ├── error002.rdf │ │ ├── error003.rdf │ │ ├── test001.nt │ │ ├── test001.rdf │ │ ├── test002.nt │ │ ├── test002.rdf │ │ ├── test003.nt │ │ ├── test003.rdf │ │ ├── test004.nt │ │ ├── test004.rdf │ │ ├── test005.nt │ │ ├── test005.rdf │ │ ├── test006.nt │ │ ├── test006.rdf │ │ ├── test007.nt │ │ ├── test007.rdf │ │ ├── test008.nt │ │ ├── test008.rdf │ │ ├── test009.nt │ │ ├── test009.rdf │ │ ├── test010.nt │ │ ├── test010.rdf │ │ ├── test011.nt │ │ ├── test011.rdf │ │ ├── test012.nt │ │ ├── test012.rdf │ │ ├── test013.nt │ │ ├── test013.rdf │ │ ├── test014.nt │ │ ├── test014.rdf │ │ ├── test015.nt │ │ ├── test015.rdf │ │ ├── test016.nt │ │ ├── test016.rdf │ │ ├── test017.nt │ │ └── test017.rdf │ │ ├── rdfms-identity-anon-resources │ │ ├── test001.nt │ │ ├── test001.rdf │ │ ├── test002.nt │ │ ├── test002.rdf │ │ ├── test003.nt │ │ ├── test003.rdf │ │ ├── test004.nt │ │ ├── test004.rdf │ │ ├── test005.nt │ │ └── test005.rdf │ │ ├── rdfms-literal-is-xml-structure │ │ ├── test001.nt │ │ ├── test001.rdf │ │ ├── test002.nt │ │ ├── test002.rdf │ │ ├── test003.nt │ │ ├── test003.rdf │ │ ├── test004.nt │ │ ├── test004.rdf │ │ ├── test005.nt │ │ └── test005.rdf │ │ ├── rdfms-nested-bagIDs │ │ ├── test001.nt │ │ ├── test001.rdf │ │ ├── test002.nt │ │ ├── test002.rdf │ │ ├── test003.nt │ │ ├── test003.rdf │ │ ├── test004.nt │ │ ├── test004.rdf │ │ ├── test005.nt │ │ ├── test005.rdf │ │ ├── test006.nt │ │ ├── test006.rdf │ │ ├── test007.rdf │ │ ├── test008.nt │ │ ├── test008.rdf │ │ ├── test009.nt │ │ ├── test009.rdf │ │ ├── test010.rdf │ │ ├── test010a.nt │ │ ├── test010b.nt │ │ ├── test011.rdf │ │ ├── test011a.nt │ │ ├── test011b.nt │ │ ├── test012.rdf │ │ ├── test012a.nt │ │ └── test012b.nt │ │ ├── rdfms-not-id-and-resource-attr │ │ ├── test001.nt │ │ ├── test001.rdf │ │ ├── test002.nt │ │ ├── test002.rdf │ │ ├── test003.nt │ │ ├── test003.rdf │ │ ├── test004.nt │ │ ├── test004.rdf │ │ ├── test005.nt │ │ └── test005.rdf │ │ ├── rdfms-para196 │ │ ├── test001.nt │ │ └── test001.rdf │ │ ├── rdfms-parseType │ │ ├── error001.rdf │ │ ├── error002.rdf │ │ └── error003.rdf │ │ ├── rdfms-rdf-id │ │ ├── error001.rdf │ │ ├── error002.rdf │ │ ├── error003.rdf │ │ ├── error004.rdf │ │ ├── error005.rdf │ │ ├── error006.rdf │ │ └── error007.rdf │ │ ├── rdfms-rdf-names-use │ │ ├── error-001.rdf │ │ ├── error-002.rdf │ │ ├── error-003.rdf │ │ ├── error-004.rdf │ │ ├── error-005.rdf │ │ ├── error-006.rdf │ │ ├── error-007.rdf │ │ ├── error-008.rdf │ │ ├── error-009.rdf │ │ ├── error-010.rdf │ │ ├── error-011.rdf │ │ ├── error-012.rdf │ │ ├── error-013.rdf │ │ ├── error-014.rdf │ │ ├── error-015.rdf │ │ ├── error-016.rdf │ │ ├── error-017.rdf │ │ ├── error-018.rdf │ │ ├── error-019.rdf │ │ ├── error-020.rdf │ │ ├── test-001.nt │ │ ├── test-001.rdf │ │ ├── test-002.nt │ │ ├── test-002.rdf │ │ ├── test-003.nt │ │ ├── test-003.rdf │ │ ├── test-004.nt │ │ ├── test-004.rdf │ │ ├── test-005.nt │ │ ├── test-005.rdf │ │ ├── test-006.nt │ │ ├── test-006.rdf │ │ ├── test-007.nt │ │ ├── test-007.rdf │ │ ├── test-008.nt │ │ ├── test-008.rdf │ │ ├── test-009.nt │ │ ├── test-009.rdf │ │ ├── test-010.nt │ │ ├── test-010.rdf │ │ ├── test-011.nt │ │ ├── test-011.rdf │ │ ├── test-012.nt │ │ ├── test-012.rdf │ │ ├── test-013.nt │ │ ├── test-013.rdf │ │ ├── test-014.nt │ │ ├── test-014.rdf │ │ ├── test-015.nt │ │ ├── test-015.rdf │ │ ├── test-016.nt │ │ ├── test-016.rdf │ │ ├── test-017.nt │ │ ├── test-017.rdf │ │ ├── test-018.nt │ │ ├── test-018.rdf │ │ ├── test-019.nt │ │ ├── test-019.rdf │ │ ├── test-020.nt │ │ ├── test-020.rdf │ │ ├── test-021.nt │ │ ├── test-021.rdf │ │ ├── test-022.nt │ │ ├── test-022.rdf │ │ ├── test-023.nt │ │ ├── test-023.rdf │ │ ├── test-024.nt │ │ ├── test-024.rdf │ │ ├── test-025.nt │ │ ├── test-025.rdf │ │ ├── test-026.nt │ │ ├── test-026.rdf │ │ ├── test-027.nt │ │ ├── test-027.rdf │ │ ├── test-028.nt │ │ ├── test-028.rdf │ │ ├── test-029.nt │ │ ├── test-029.rdf │ │ ├── test-030.nt │ │ ├── test-030.rdf │ │ ├── test-031.nt │ │ ├── test-031.rdf │ │ ├── test-032.nt │ │ ├── test-032.rdf │ │ ├── test-033.nt │ │ ├── test-033.rdf │ │ ├── test-034.nt │ │ ├── test-034.rdf │ │ ├── test-035.nt │ │ ├── test-035.rdf │ │ ├── test-036.nt │ │ ├── test-036.rdf │ │ ├── test-037.nt │ │ ├── test-037.rdf │ │ ├── warn-001.nt │ │ ├── warn-001.rdf │ │ ├── warn-002.nt │ │ ├── warn-002.rdf │ │ ├── warn-003.nt │ │ └── warn-003.rdf │ │ ├── rdfms-reification-required │ │ ├── test001.nt │ │ └── test001.rdf │ │ ├── rdfms-seq-representation │ │ ├── empty.nt │ │ ├── test001.nt │ │ ├── test001.rdf │ │ ├── test002.nt │ │ ├── test003a.nt │ │ ├── test003b.nt │ │ └── test004.nt │ │ ├── rdfms-syntax-incomplete │ │ ├── error001.rdf │ │ ├── error002.rdf │ │ ├── error003.rdf │ │ ├── error004.rdf │ │ ├── error005.rdf │ │ ├── error006.rdf │ │ ├── test001.nt │ │ ├── test001.rdf │ │ ├── test002.nt │ │ ├── test002.rdf │ │ ├── test003.nt │ │ ├── test003.rdf │ │ ├── test004.nt │ │ └── test004.rdf │ │ ├── rdfms-uri-substructure │ │ ├── error001.nt │ │ ├── test001.nt │ │ └── test001.rdf │ │ ├── rdfms-xml-literal-namespaces │ │ ├── test001.nt │ │ ├── test001.rdf │ │ ├── test002.nt │ │ └── test002.rdf │ │ ├── rdfms-xmllang │ │ ├── test001.nt │ │ ├── test001.rdf │ │ ├── test002.nt │ │ ├── test002.rdf │ │ ├── test003.nt │ │ ├── test003.rdf │ │ ├── test004.nt │ │ ├── test004.rdf │ │ ├── test005.nt │ │ ├── test005.rdf │ │ ├── test006.nt │ │ ├── test006.rdf │ │ ├── test007a.nt │ │ ├── test007b.nt │ │ └── test007c.nt │ │ ├── rdfs-container-membership-superProperty │ │ ├── not1C.rdf │ │ └── not1P.rdf │ │ ├── rdfs-domain-and-range │ │ ├── nonconclusions005.rdf │ │ ├── nonconclusions006.rdf │ │ ├── premises005.rdf │ │ ├── premises006.rdf │ │ ├── test001.nt │ │ ├── test001.rdf │ │ ├── test002.nt │ │ ├── test002.rdf │ │ ├── test003.nt │ │ ├── test003.rdf │ │ ├── test004.nt │ │ └── test004.rdf │ │ ├── rdfs-entailment │ │ ├── test001.nt │ │ └── test002.nt │ │ ├── rdfs-no-cycles-in-subClassOf │ │ ├── test001.nt │ │ └── test001.rdf │ │ ├── rdfs-no-cycles-in-subPropertyOf │ │ ├── test001.nt │ │ └── test001.rdf │ │ ├── rdfs-subClassOf-a-Property │ │ └── test001.nt │ │ ├── rdfs-subPropertyOf-semantics │ │ ├── test001.nt │ │ └── test002.nt │ │ ├── statement-entailment │ │ ├── test001a.nt │ │ ├── test001b.nt │ │ ├── test002a.nt │ │ └── test002b.nt │ │ ├── tex-01 │ │ ├── test001.rdf │ │ └── test002.rdf │ │ ├── unrecognised-xml-attributes │ │ ├── test001.nt │ │ ├── test001.rdf │ │ ├── test002.nt │ │ └── test002.rdf │ │ ├── xml-canon │ │ ├── test001.nt │ │ └── test001.rdf │ │ ├── xmlbase │ │ ├── error001.rdf │ │ ├── test001.nt │ │ ├── test001.rdf │ │ ├── test002.nt │ │ ├── test002.rdf │ │ ├── test003.nt │ │ ├── test003.rdf │ │ ├── test004.nt │ │ ├── test004.rdf │ │ ├── test005.nt │ │ ├── test005.rdf │ │ ├── test006.nt │ │ ├── test006.rdf │ │ ├── test007.nt │ │ ├── test007.rdf │ │ ├── test008.nt │ │ ├── test008.rdf │ │ ├── test009.nt │ │ ├── test009.rdf │ │ ├── test010.nt │ │ ├── test010.rdf │ │ ├── test011.nt │ │ ├── test011.rdf │ │ ├── test012.nt │ │ ├── test012.rdf │ │ ├── test013.nt │ │ ├── test013.rdf │ │ ├── test014.nt │ │ ├── test014.rdf │ │ ├── test015.nt │ │ ├── test015.rdf │ │ ├── test016.nt │ │ └── test016.rdf │ │ └── xmlsch-02 │ │ ├── test001.rdf │ │ ├── test002.rdf │ │ └── test003.rdf └── testng.xml └── rdfa ├── pom.xml ├── src ├── main │ └── java │ │ └── org │ │ └── semarglproject │ │ ├── rdf │ │ └── rdfa │ │ │ ├── DocumentContext.java │ │ │ ├── EvalContext.java │ │ │ ├── RdfaParser.java │ │ │ ├── VocabManager.java │ │ │ └── Vocabulary.java │ │ └── vocab │ │ ├── OWL.java │ │ └── RDFa.java └── test │ ├── java │ └── org │ │ └── semarglproject │ │ └── rdf │ │ └── rdfa │ │ ├── RdfaParserTest.java │ │ ├── RdfaTestSuiteHelper.java │ │ └── TestSuiteDownloadHelper.java │ └── resources │ ├── log4j.properties │ └── rdfa-testsuite │ ├── fetch_tests.sparql │ ├── manifest.ttl │ ├── rdfa1.0 │ ├── svg │ │ ├── 0201.sparql │ │ ├── 0201.svg │ │ ├── 0202.sparql │ │ ├── 0202.svg │ │ ├── 0203.sparql │ │ ├── 0203.svg │ │ ├── 0291.sparql │ │ ├── 0291.svg │ │ ├── 0304.sparql │ │ ├── 0304.svg │ │ ├── 0311.sparql │ │ └── 0311.svg │ ├── xhtml1 │ │ ├── 0001.sparql │ │ ├── 0001.xhtml │ │ ├── 0006.sparql │ │ ├── 0006.xhtml │ │ ├── 0007.sparql │ │ ├── 0007.xhtml │ │ ├── 0008.sparql │ │ ├── 0008.xhtml │ │ ├── 0009.sparql │ │ ├── 0009.xhtml │ │ ├── 0010.sparql │ │ ├── 0010.xhtml │ │ ├── 0012.sparql │ │ ├── 0012.xhtml │ │ ├── 0013.sparql │ │ ├── 0013.xhtml │ │ ├── 0014.sparql │ │ ├── 0014.xhtml │ │ ├── 0015.sparql │ │ ├── 0015.xhtml │ │ ├── 0017.sparql │ │ ├── 0017.xhtml │ │ ├── 0018.sparql │ │ ├── 0018.xhtml │ │ ├── 0019.sparql │ │ ├── 0019.xhtml │ │ ├── 0020.sparql │ │ ├── 0020.xhtml │ │ ├── 0021.sparql │ │ ├── 0021.xhtml │ │ ├── 0023.sparql │ │ ├── 0023.xhtml │ │ ├── 0025.sparql │ │ ├── 0025.xhtml │ │ ├── 0026.sparql │ │ ├── 0026.xhtml │ │ ├── 0027.sparql │ │ ├── 0027.xhtml │ │ ├── 0029.sparql │ │ ├── 0029.xhtml │ │ ├── 0030.sparql │ │ ├── 0030.xhtml │ │ ├── 0031.sparql │ │ ├── 0031.xhtml │ │ ├── 0032.sparql │ │ ├── 0032.xhtml │ │ ├── 0033.sparql │ │ ├── 0033.xhtml │ │ ├── 0034.sparql │ │ ├── 0034.xhtml │ │ ├── 0035.sparql │ │ ├── 0035.xhtml │ │ ├── 0036.sparql │ │ ├── 0036.xhtml │ │ ├── 0037.sparql │ │ ├── 0037.xhtml │ │ ├── 0038.sparql │ │ ├── 0038.xhtml │ │ ├── 0039.sparql │ │ ├── 0039.xhtml │ │ ├── 0040.sparql │ │ ├── 0040.xhtml │ │ ├── 0041.sparql │ │ ├── 0041.xhtml │ │ ├── 0042.sparql │ │ ├── 0042.xhtml │ │ ├── 0046.sparql │ │ ├── 0046.xhtml │ │ ├── 0047.sparql │ │ ├── 0047.xhtml │ │ ├── 0048.sparql │ │ ├── 0048.xhtml │ │ ├── 0049.sparql │ │ ├── 0049.xhtml │ │ ├── 0050.sparql │ │ ├── 0050.xhtml │ │ ├── 0051.sparql │ │ ├── 0051.xhtml │ │ ├── 0052.sparql │ │ ├── 0052.xhtml │ │ ├── 0053.sparql │ │ ├── 0053.xhtml │ │ ├── 0054.sparql │ │ ├── 0054.xhtml │ │ ├── 0055.sparql │ │ ├── 0055.xhtml │ │ ├── 0056.sparql │ │ ├── 0056.xhtml │ │ ├── 0057.sparql │ │ ├── 0057.xhtml │ │ ├── 0058.sparql │ │ ├── 0058.xhtml │ │ ├── 0059.sparql │ │ ├── 0059.xhtml │ │ ├── 0060.sparql │ │ ├── 0060.xhtml │ │ ├── 0061.sparql │ │ ├── 0061.xhtml │ │ ├── 0062.sparql │ │ ├── 0062.xhtml │ │ ├── 0063.sparql │ │ ├── 0063.xhtml │ │ ├── 0064.sparql │ │ ├── 0064.xhtml │ │ ├── 0065.sparql │ │ ├── 0065.xhtml │ │ ├── 0066.sparql │ │ ├── 0066.xhtml │ │ ├── 0067.sparql │ │ ├── 0067.xhtml │ │ ├── 0068.sparql │ │ ├── 0068.xhtml │ │ ├── 0069.sparql │ │ ├── 0069.xhtml │ │ ├── 0070.sparql │ │ ├── 0070.xhtml │ │ ├── 0071.sparql │ │ ├── 0071.xhtml │ │ ├── 0072.sparql │ │ ├── 0072.xhtml │ │ ├── 0073.sparql │ │ ├── 0073.xhtml │ │ ├── 0074.sparql │ │ ├── 0074.xhtml │ │ ├── 0075.sparql │ │ ├── 0075.xhtml │ │ ├── 0076.sparql │ │ ├── 0076.xhtml │ │ ├── 0077.sparql │ │ ├── 0077.xhtml │ │ ├── 0078.sparql │ │ ├── 0078.xhtml │ │ ├── 0079.sparql │ │ ├── 0079.xhtml │ │ ├── 0080.sparql │ │ ├── 0080.xhtml │ │ ├── 0081.sparql │ │ ├── 0081.xhtml │ │ ├── 0082.sparql │ │ ├── 0082.xhtml │ │ ├── 0083.sparql │ │ ├── 0083.xhtml │ │ ├── 0084.sparql │ │ ├── 0084.xhtml │ │ ├── 0085.sparql │ │ ├── 0085.xhtml │ │ ├── 0087.sparql │ │ ├── 0087.xhtml │ │ ├── 0088.sparql │ │ ├── 0088.xhtml │ │ ├── 0089.sparql │ │ ├── 0089.xhtml │ │ ├── 0090.sparql │ │ ├── 0090.xhtml │ │ ├── 0091.sparql │ │ ├── 0091.xhtml │ │ ├── 0093.sparql │ │ ├── 0093.xhtml │ │ ├── 0099.sparql │ │ ├── 0099.xhtml │ │ ├── 0104.sparql │ │ ├── 0104.xhtml │ │ ├── 0106.sparql │ │ ├── 0106.xhtml │ │ ├── 0107.sparql │ │ ├── 0107.xhtml │ │ ├── 0108.sparql │ │ ├── 0108.xhtml │ │ ├── 0110.sparql │ │ ├── 0110.xhtml │ │ ├── 0111.sparql │ │ ├── 0111.xhtml │ │ ├── 0112.sparql │ │ ├── 0112.xhtml │ │ ├── 0113.sparql │ │ ├── 0113.xhtml │ │ ├── 0114.sparql │ │ ├── 0114.xhtml │ │ ├── 0115.sparql │ │ ├── 0115.xhtml │ │ ├── 0117.sparql │ │ ├── 0117.xhtml │ │ ├── 0118.sparql │ │ ├── 0118.xhtml │ │ ├── 0119.sparql │ │ ├── 0119.xhtml │ │ ├── 0120.sparql │ │ ├── 0120.xhtml │ │ ├── 0121.sparql │ │ ├── 0121.xhtml │ │ ├── 0122.sparql │ │ ├── 0122.xhtml │ │ ├── 0126.sparql │ │ ├── 0126.xhtml │ │ ├── 0131.sparql │ │ ├── 0131.xhtml │ │ ├── 0134.sparql │ │ ├── 0134.xhtml │ │ ├── 0140.sparql │ │ ├── 0140.xhtml │ │ ├── 0147.sparql │ │ ├── 0147.xhtml │ │ ├── 0172.sparql │ │ ├── 0172.xhtml │ │ ├── 0173.sparql │ │ ├── 0173.xhtml │ │ ├── 0174.sparql │ │ ├── 0174.xhtml │ │ ├── 0181.sparql │ │ ├── 0181.xhtml │ │ ├── 0197.sparql │ │ ├── 0197.xhtml │ │ ├── 0207.sparql │ │ ├── 0207.xhtml │ │ ├── 0209.sparql │ │ ├── 0209.xhtml │ │ ├── 0210.sparql │ │ ├── 0210.xhtml │ │ ├── 0211.sparql │ │ ├── 0211.xhtml │ │ ├── 0212.sparql │ │ ├── 0212.xhtml │ │ ├── 0215.sparql │ │ ├── 0215.xhtml │ │ ├── 0258.sparql │ │ ├── 0258.xhtml │ │ ├── 0262.sparql │ │ ├── 0262.xhtml │ │ ├── 0291.sparql │ │ ├── 0291.xhtml │ │ ├── 0294.sparql │ │ ├── 0294.xhtml │ │ ├── 0311.sparql │ │ └── 0311.xhtml │ └── xml │ │ ├── 0001.sparql │ │ ├── 0001.xml │ │ ├── 0006.sparql │ │ ├── 0006.xml │ │ ├── 0007.sparql │ │ ├── 0007.xml │ │ ├── 0008.sparql │ │ ├── 0008.xml │ │ ├── 0009.sparql │ │ ├── 0009.xml │ │ ├── 0010.sparql │ │ ├── 0010.xml │ │ ├── 0012.sparql │ │ ├── 0012.xml │ │ ├── 0013.sparql │ │ ├── 0013.xml │ │ ├── 0014.sparql │ │ ├── 0014.xml │ │ ├── 0015.sparql │ │ ├── 0015.xml │ │ ├── 0017.sparql │ │ ├── 0017.xml │ │ ├── 0018.sparql │ │ ├── 0018.xml │ │ ├── 0019.sparql │ │ ├── 0019.xml │ │ ├── 0020.sparql │ │ ├── 0020.xml │ │ ├── 0021.sparql │ │ ├── 0021.xml │ │ ├── 0023.sparql │ │ ├── 0023.xml │ │ ├── 0025.sparql │ │ ├── 0025.xml │ │ ├── 0026.sparql │ │ ├── 0026.xml │ │ ├── 0027.sparql │ │ ├── 0027.xml │ │ ├── 0029.sparql │ │ ├── 0029.xml │ │ ├── 0030.sparql │ │ ├── 0030.xml │ │ ├── 0031.sparql │ │ ├── 0031.xml │ │ ├── 0032.sparql │ │ ├── 0032.xml │ │ ├── 0033.sparql │ │ ├── 0033.xml │ │ ├── 0034.sparql │ │ ├── 0034.xml │ │ ├── 0035.sparql │ │ ├── 0035.xml │ │ ├── 0036.sparql │ │ ├── 0036.xml │ │ ├── 0037.sparql │ │ ├── 0037.xml │ │ ├── 0038.sparql │ │ ├── 0038.xml │ │ ├── 0039.sparql │ │ ├── 0039.xml │ │ ├── 0041.sparql │ │ ├── 0041.xml │ │ ├── 0042.sparql │ │ ├── 0042.xml │ │ ├── 0046.sparql │ │ ├── 0046.xml │ │ ├── 0047.sparql │ │ ├── 0047.xml │ │ ├── 0048.sparql │ │ ├── 0048.xml │ │ ├── 0049.sparql │ │ ├── 0049.xml │ │ ├── 0050.sparql │ │ ├── 0050.xml │ │ ├── 0051.sparql │ │ ├── 0051.xml │ │ ├── 0052.sparql │ │ ├── 0052.xml │ │ ├── 0053.sparql │ │ ├── 0053.xml │ │ ├── 0054.sparql │ │ ├── 0054.xml │ │ ├── 0055.sparql │ │ ├── 0055.xml │ │ ├── 0056.sparql │ │ ├── 0056.xml │ │ ├── 0057.sparql │ │ ├── 0057.xml │ │ ├── 0058.sparql │ │ ├── 0058.xml │ │ ├── 0059.sparql │ │ ├── 0059.xml │ │ ├── 0060.sparql │ │ ├── 0060.xml │ │ ├── 0063.sparql │ │ ├── 0063.xml │ │ ├── 0064.sparql │ │ ├── 0064.xml │ │ ├── 0065.sparql │ │ ├── 0065.xml │ │ ├── 0067.sparql │ │ ├── 0067.xml │ │ ├── 0068.sparql │ │ ├── 0068.xml │ │ ├── 0071.sparql │ │ ├── 0071.xml │ │ ├── 0078.sparql │ │ ├── 0078.xml │ │ ├── 0079.sparql │ │ ├── 0079.xml │ │ ├── 0080.sparql │ │ ├── 0080.xml │ │ ├── 0081.sparql │ │ ├── 0081.xml │ │ ├── 0082.sparql │ │ ├── 0082.xml │ │ ├── 0083.sparql │ │ ├── 0083.xml │ │ ├── 0084.sparql │ │ ├── 0084.xml │ │ ├── 0085.sparql │ │ ├── 0085.xml │ │ ├── 0087.sparql │ │ ├── 0087.xml │ │ ├── 0088.sparql │ │ ├── 0088.xml │ │ ├── 0089.sparql │ │ ├── 0089.xml │ │ ├── 0091.sparql │ │ ├── 0091.xml │ │ ├── 0093.sparql │ │ ├── 0093.xml │ │ ├── 0099.sparql │ │ ├── 0099.xml │ │ ├── 0104.sparql │ │ ├── 0104.xml │ │ ├── 0106.sparql │ │ ├── 0106.xml │ │ ├── 0107.sparql │ │ ├── 0107.xml │ │ ├── 0108.sparql │ │ ├── 0108.xml │ │ ├── 0112.sparql │ │ ├── 0112.xml │ │ ├── 0113.sparql │ │ ├── 0113.xml │ │ ├── 0115.sparql │ │ ├── 0115.xml │ │ ├── 0118.sparql │ │ ├── 0118.xml │ │ ├── 0119.sparql │ │ ├── 0119.xml │ │ ├── 0120.sparql │ │ ├── 0120.xml │ │ ├── 0121.sparql │ │ ├── 0121.xml │ │ ├── 0122.sparql │ │ ├── 0122.xml │ │ ├── 0126.sparql │ │ ├── 0126.xml │ │ ├── 0140.sparql │ │ ├── 0140.xml │ │ ├── 0147.sparql │ │ ├── 0147.xml │ │ ├── 0174.sparql │ │ ├── 0174.xml │ │ ├── 0181.sparql │ │ ├── 0181.xml │ │ ├── 0202.sparql │ │ ├── 0202.xml │ │ ├── 0203.sparql │ │ ├── 0203.xml │ │ ├── 0207.sparql │ │ ├── 0207.xml │ │ ├── 0209.sparql │ │ ├── 0209.xml │ │ ├── 0210.sparql │ │ ├── 0210.xml │ │ ├── 0211.sparql │ │ ├── 0211.xml │ │ ├── 0212.sparql │ │ ├── 0212.xml │ │ ├── 0258.sparql │ │ ├── 0258.xml │ │ ├── 0262.sparql │ │ ├── 0262.xml │ │ ├── 0291.sparql │ │ ├── 0291.xml │ │ ├── 0311.sparql │ │ └── 0311.xml │ └── rdfa1.1 │ ├── html4 │ ├── 0001.html │ ├── 0001.sparql │ ├── 0006.html │ ├── 0006.sparql │ ├── 0007.html │ ├── 0007.sparql │ ├── 0008.html │ ├── 0008.sparql │ ├── 0009.html │ ├── 0009.sparql │ ├── 0010.html │ ├── 0010.sparql │ ├── 0014.html │ ├── 0014.sparql │ ├── 0015.html │ ├── 0015.sparql │ ├── 0017.html │ ├── 0017.sparql │ ├── 0018.html │ ├── 0018.sparql │ ├── 0019.html │ ├── 0019.sparql │ ├── 0020.html │ ├── 0020.sparql │ ├── 0021.html │ ├── 0021.sparql │ ├── 0023.html │ ├── 0023.sparql │ ├── 0025.html │ ├── 0025.sparql │ ├── 0026.html │ ├── 0026.sparql │ ├── 0027.html │ ├── 0027.sparql │ ├── 0029.html │ ├── 0029.sparql │ ├── 0030.html │ ├── 0030.sparql │ ├── 0031.html │ ├── 0031.sparql │ ├── 0032.html │ ├── 0032.sparql │ ├── 0033.html │ ├── 0033.sparql │ ├── 0034.html │ ├── 0034.sparql │ ├── 0035.html │ ├── 0035.sparql │ ├── 0036.html │ ├── 0036.sparql │ ├── 0037.html │ ├── 0037.sparql │ ├── 0038.html │ ├── 0038.sparql │ ├── 0039.html │ ├── 0039.sparql │ ├── 0041.html │ ├── 0041.sparql │ ├── 0048.html │ ├── 0048.sparql │ ├── 0049.html │ ├── 0049.sparql │ ├── 0050.html │ ├── 0050.sparql │ ├── 0051.html │ ├── 0051.sparql │ ├── 0052.html │ ├── 0052.sparql │ ├── 0053.html │ ├── 0053.sparql │ ├── 0054.html │ ├── 0054.sparql │ ├── 0055.html │ ├── 0055.sparql │ ├── 0056.html │ ├── 0056.sparql │ ├── 0057.html │ ├── 0057.sparql │ ├── 0059.html │ ├── 0059.sparql │ ├── 0060.html │ ├── 0060.sparql │ ├── 0063.html │ ├── 0063.sparql │ ├── 0064.html │ ├── 0064.sparql │ ├── 0065.html │ ├── 0065.sparql │ ├── 0066.html │ ├── 0066.sparql │ ├── 0067.html │ ├── 0067.sparql │ ├── 0068.html │ ├── 0068.sparql │ ├── 0069.html │ ├── 0069.sparql │ ├── 0070.html │ ├── 0070.sparql │ ├── 0071.html │ ├── 0071.sparql │ ├── 0072.html │ ├── 0072.sparql │ ├── 0073.html │ ├── 0073.sparql │ ├── 0074.html │ ├── 0074.sparql │ ├── 0075.html │ ├── 0075.sparql │ ├── 0079.html │ ├── 0079.sparql │ ├── 0080.html │ ├── 0080.sparql │ ├── 0083.html │ ├── 0083.sparql │ ├── 0084.html │ ├── 0084.sparql │ ├── 0085.html │ ├── 0085.sparql │ ├── 0087.html │ ├── 0087.sparql │ ├── 0088.html │ ├── 0088.sparql │ ├── 0089.html │ ├── 0089.sparql │ ├── 0091.html │ ├── 0091.sparql │ ├── 0093.html │ ├── 0093.sparql │ ├── 0099.html │ ├── 0099.sparql │ ├── 0104.html │ ├── 0104.sparql │ ├── 0106.html │ ├── 0106.sparql │ ├── 0107.html │ ├── 0107.sparql │ ├── 0109.html │ ├── 0109.sparql │ ├── 0110.html │ ├── 0110.sparql │ ├── 0111.html │ ├── 0111.sparql │ ├── 0112.html │ ├── 0112.sparql │ ├── 0114.html │ ├── 0114.sparql │ ├── 0115.html │ ├── 0115.sparql │ ├── 0117.html │ ├── 0117.sparql │ ├── 0118.html │ ├── 0118.sparql │ ├── 0119.html │ ├── 0119.sparql │ ├── 0120.html │ ├── 0120.sparql │ ├── 0122.html │ ├── 0122.sparql │ ├── 0126.html │ ├── 0126.sparql │ ├── 0131.html │ ├── 0131.sparql │ ├── 0134.html │ ├── 0134.sparql │ ├── 0140.html │ ├── 0140.sparql │ ├── 0147.html │ ├── 0147.sparql │ ├── 0174.html │ ├── 0174.sparql │ ├── 0175.html │ ├── 0175.sparql │ ├── 0176.html │ ├── 0176.sparql │ ├── 0177.html │ ├── 0177.sparql │ ├── 0178.html │ ├── 0178.sparql │ ├── 0179.html │ ├── 0179.sparql │ ├── 0180.html │ ├── 0180.sparql │ ├── 0181.html │ ├── 0181.sparql │ ├── 0182.html │ ├── 0182.sparql │ ├── 0183.html │ ├── 0183.sparql │ ├── 0186.html │ ├── 0186.sparql │ ├── 0187.html │ ├── 0187.sparql │ ├── 0188.html │ ├── 0188.sparql │ ├── 0189.html │ ├── 0189.sparql │ ├── 0190.html │ ├── 0190.sparql │ ├── 0196.html │ ├── 0196.sparql │ ├── 0197.html │ ├── 0197.sparql │ ├── 0206.html │ ├── 0206.sparql │ ├── 0207.html │ ├── 0207.sparql │ ├── 0213.html │ ├── 0213.sparql │ ├── 0214.html │ ├── 0214.sparql │ ├── 0216.html │ ├── 0216.sparql │ ├── 0217.html │ ├── 0217.sparql │ ├── 0218.html │ ├── 0218.sparql │ ├── 0219.html │ ├── 0219.sparql │ ├── 0220.html │ ├── 0220.sparql │ ├── 0221.html │ ├── 0221.sparql │ ├── 0222.html │ ├── 0222.sparql │ ├── 0223.html │ ├── 0223.sparql │ ├── 0224.html │ ├── 0224.sparql │ ├── 0225.html │ ├── 0225.sparql │ ├── 0226.html │ ├── 0226.sparql │ ├── 0227.html │ ├── 0227.sparql │ ├── 0228.html │ ├── 0228.sparql │ ├── 0229.html │ ├── 0229.sparql │ ├── 0230.html │ ├── 0230.sparql │ ├── 0231.html │ ├── 0231.sparql │ ├── 0232.html │ ├── 0232.sparql │ ├── 0233.html │ ├── 0233.sparql │ ├── 0234.html │ ├── 0234.sparql │ ├── 0235.html │ ├── 0235.sparql │ ├── 0237.html │ ├── 0237.sparql │ ├── 0238.html │ ├── 0238.sparql │ ├── 0239.html │ ├── 0239.sparql │ ├── 0240.html │ ├── 0240.sparql │ ├── 0241.html │ ├── 0241.sparql │ ├── 0242.html │ ├── 0242.sparql │ ├── 0243.html │ ├── 0243.sparql │ ├── 0244.html │ ├── 0244.sparql │ ├── 0245.html │ ├── 0245.sparql │ ├── 0246.html │ ├── 0246.sparql │ ├── 0247.html │ ├── 0247.sparql │ ├── 0248.html │ ├── 0248.sparql │ ├── 0249.html │ ├── 0249.sparql │ ├── 0250.html │ ├── 0250.sparql │ ├── 0251.html │ ├── 0251.sparql │ ├── 0252.html │ ├── 0252.sparql │ ├── 0253.html │ ├── 0253.sparql │ ├── 0254.html │ ├── 0254.sparql │ ├── 0255.html │ ├── 0255.sparql │ ├── 0257.html │ ├── 0257.sparql │ ├── 0258.html │ ├── 0258.sparql │ ├── 0259.html │ ├── 0259.sparql │ ├── 0261.html │ ├── 0261.sparql │ ├── 0262.html │ ├── 0262.sparql │ ├── 0263.html │ ├── 0263.sparql │ ├── 0264.html │ ├── 0264.sparql │ ├── 0265.html │ ├── 0265.sparql │ ├── 0266.html │ ├── 0266.sparql │ ├── 0267.html │ ├── 0267.sparql │ ├── 0268.html │ ├── 0268.sparql │ ├── 0269.html │ ├── 0269.sparql │ ├── 0271.html │ ├── 0271.sparql │ ├── 0289.html │ ├── 0289.sparql │ ├── 0290.html │ ├── 0290.sparql │ ├── 0291.html │ ├── 0291.sparql │ ├── 0292.html │ ├── 0292.sparql │ ├── 0293.html │ ├── 0293.sparql │ ├── 0295.html │ ├── 0295.sparql │ ├── 0296.html │ ├── 0296.sparql │ ├── 0297.html │ ├── 0297.sparql │ ├── 0298.html │ ├── 0298.sparql │ ├── 0299.html │ ├── 0299.sparql │ ├── 0300.html │ ├── 0300.sparql │ ├── 0301.html │ ├── 0301.sparql │ ├── 0302.html │ ├── 0302.sparql │ ├── 0303.html │ ├── 0303.sparql │ ├── 0311.html │ ├── 0311.sparql │ ├── 0318.html │ ├── 0318.sparql │ ├── 0319.html │ ├── 0319.sparql │ ├── 0320.html │ ├── 0320.sparql │ ├── 0329.html │ ├── 0329.sparql │ ├── 0330.html │ ├── 0330.sparql │ ├── 0331.html │ ├── 0331.sparql │ ├── 0332.html │ └── 0332.sparql │ ├── html5 │ ├── 0001.html │ ├── 0001.sparql │ ├── 0006.html │ ├── 0006.sparql │ ├── 0007.html │ ├── 0007.sparql │ ├── 0008.html │ ├── 0008.sparql │ ├── 0009.html │ ├── 0009.sparql │ ├── 0010.html │ ├── 0010.sparql │ ├── 0014.html │ ├── 0014.sparql │ ├── 0015.html │ ├── 0015.sparql │ ├── 0017.html │ ├── 0017.sparql │ ├── 0018.html │ ├── 0018.sparql │ ├── 0019.html │ ├── 0019.sparql │ ├── 0020.html │ ├── 0020.sparql │ ├── 0021.html │ ├── 0021.sparql │ ├── 0023.html │ ├── 0023.sparql │ ├── 0025.html │ ├── 0025.sparql │ ├── 0026.html │ ├── 0026.sparql │ ├── 0027.html │ ├── 0027.sparql │ ├── 0029.html │ ├── 0029.sparql │ ├── 0030.html │ ├── 0030.sparql │ ├── 0031.html │ ├── 0031.sparql │ ├── 0032.html │ ├── 0032.sparql │ ├── 0033.html │ ├── 0033.sparql │ ├── 0034.html │ ├── 0034.sparql │ ├── 0035.html │ ├── 0035.sparql │ ├── 0036.html │ ├── 0036.sparql │ ├── 0037.html │ ├── 0037.sparql │ ├── 0038.html │ ├── 0038.sparql │ ├── 0039.html │ ├── 0039.sparql │ ├── 0041.html │ ├── 0041.sparql │ ├── 0048.html │ ├── 0048.sparql │ ├── 0049.html │ ├── 0049.sparql │ ├── 0050.html │ ├── 0050.sparql │ ├── 0051.html │ ├── 0051.sparql │ ├── 0052.html │ ├── 0052.sparql │ ├── 0053.html │ ├── 0053.sparql │ ├── 0054.html │ ├── 0054.sparql │ ├── 0055.html │ ├── 0055.sparql │ ├── 0056.html │ ├── 0056.sparql │ ├── 0057.html │ ├── 0057.sparql │ ├── 0059.html │ ├── 0059.sparql │ ├── 0060.html │ ├── 0060.sparql │ ├── 0063.html │ ├── 0063.sparql │ ├── 0064.html │ ├── 0064.sparql │ ├── 0065.html │ ├── 0065.sparql │ ├── 0066.html │ ├── 0066.sparql │ ├── 0067.html │ ├── 0067.sparql │ ├── 0068.html │ ├── 0068.sparql │ ├── 0069.html │ ├── 0069.sparql │ ├── 0070.html │ ├── 0070.sparql │ ├── 0071.html │ ├── 0071.sparql │ ├── 0072.html │ ├── 0072.sparql │ ├── 0073.html │ ├── 0073.sparql │ ├── 0074.html │ ├── 0074.sparql │ ├── 0075.html │ ├── 0075.sparql │ ├── 0079.html │ ├── 0079.sparql │ ├── 0080.html │ ├── 0080.sparql │ ├── 0083.html │ ├── 0083.sparql │ ├── 0084.html │ ├── 0084.sparql │ ├── 0085.html │ ├── 0085.sparql │ ├── 0087.html │ ├── 0087.sparql │ ├── 0088.html │ ├── 0088.sparql │ ├── 0089.html │ ├── 0089.sparql │ ├── 0091.html │ ├── 0091.sparql │ ├── 0093.html │ ├── 0093.sparql │ ├── 0099.html │ ├── 0099.sparql │ ├── 0104.html │ ├── 0104.sparql │ ├── 0106.html │ ├── 0106.sparql │ ├── 0107.html │ ├── 0107.sparql │ ├── 0109.html │ ├── 0109.sparql │ ├── 0110.html │ ├── 0110.sparql │ ├── 0111.html │ ├── 0111.sparql │ ├── 0112.html │ ├── 0112.sparql │ ├── 0114.html │ ├── 0114.sparql │ ├── 0115.html │ ├── 0115.sparql │ ├── 0117.html │ ├── 0117.sparql │ ├── 0118.html │ ├── 0118.sparql │ ├── 0119.html │ ├── 0119.sparql │ ├── 0120.html │ ├── 0120.sparql │ ├── 0122.html │ ├── 0122.sparql │ ├── 0126.html │ ├── 0126.sparql │ ├── 0131.html │ ├── 0131.sparql │ ├── 0134.html │ ├── 0134.sparql │ ├── 0140.html │ ├── 0140.sparql │ ├── 0147.html │ ├── 0147.sparql │ ├── 0174.html │ ├── 0174.sparql │ ├── 0175.html │ ├── 0175.sparql │ ├── 0176.html │ ├── 0176.sparql │ ├── 0177.html │ ├── 0177.sparql │ ├── 0178.html │ ├── 0178.sparql │ ├── 0179.html │ ├── 0179.sparql │ ├── 0180.html │ ├── 0180.sparql │ ├── 0181.html │ ├── 0181.sparql │ ├── 0182.html │ ├── 0182.sparql │ ├── 0183.html │ ├── 0183.sparql │ ├── 0186.html │ ├── 0186.sparql │ ├── 0187.html │ ├── 0187.sparql │ ├── 0188.html │ ├── 0188.sparql │ ├── 0189.html │ ├── 0189.sparql │ ├── 0190.html │ ├── 0190.sparql │ ├── 0196.html │ ├── 0196.sparql │ ├── 0197.html │ ├── 0197.sparql │ ├── 0206.html │ ├── 0206.sparql │ ├── 0207.html │ ├── 0207.sparql │ ├── 0213.html │ ├── 0213.sparql │ ├── 0214.html │ ├── 0214.sparql │ ├── 0216.html │ ├── 0216.sparql │ ├── 0217.html │ ├── 0217.sparql │ ├── 0218.html │ ├── 0218.sparql │ ├── 0219.html │ ├── 0219.sparql │ ├── 0220.html │ ├── 0220.sparql │ ├── 0221.html │ ├── 0221.sparql │ ├── 0222.html │ ├── 0222.sparql │ ├── 0223.html │ ├── 0223.sparql │ ├── 0224.html │ ├── 0224.sparql │ ├── 0225.html │ ├── 0225.sparql │ ├── 0226.html │ ├── 0226.sparql │ ├── 0227.html │ ├── 0227.sparql │ ├── 0228.html │ ├── 0228.sparql │ ├── 0229.html │ ├── 0229.sparql │ ├── 0230.html │ ├── 0230.sparql │ ├── 0231.html │ ├── 0231.sparql │ ├── 0232.html │ ├── 0232.sparql │ ├── 0233.html │ ├── 0233.sparql │ ├── 0234.html │ ├── 0234.sparql │ ├── 0235.html │ ├── 0235.sparql │ ├── 0237.html │ ├── 0237.sparql │ ├── 0238.html │ ├── 0238.sparql │ ├── 0239.html │ ├── 0239.sparql │ ├── 0240.html │ ├── 0240.sparql │ ├── 0241.html │ ├── 0241.sparql │ ├── 0242.html │ ├── 0242.sparql │ ├── 0243.html │ ├── 0243.sparql │ ├── 0244.html │ ├── 0244.sparql │ ├── 0245.html │ ├── 0245.sparql │ ├── 0246.html │ ├── 0246.sparql │ ├── 0247.html │ ├── 0247.sparql │ ├── 0248.html │ ├── 0248.sparql │ ├── 0249.html │ ├── 0249.sparql │ ├── 0250.html │ ├── 0250.sparql │ ├── 0251.html │ ├── 0251.sparql │ ├── 0252.html │ ├── 0252.sparql │ ├── 0253.html │ ├── 0253.sparql │ ├── 0254.html │ ├── 0254.sparql │ ├── 0255.html │ ├── 0255.sparql │ ├── 0257.html │ ├── 0257.sparql │ ├── 0258.html │ ├── 0258.sparql │ ├── 0259.html │ ├── 0259.sparql │ ├── 0261.html │ ├── 0261.sparql │ ├── 0262.html │ ├── 0262.sparql │ ├── 0263.html │ ├── 0263.sparql │ ├── 0264.html │ ├── 0264.sparql │ ├── 0265.html │ ├── 0265.sparql │ ├── 0266.html │ ├── 0266.sparql │ ├── 0267.html │ ├── 0267.sparql │ ├── 0268.html │ ├── 0268.sparql │ ├── 0269.html │ ├── 0269.sparql │ ├── 0271.html │ ├── 0271.sparql │ ├── 0272.html │ ├── 0272.sparql │ ├── 0273.html │ ├── 0273.sparql │ ├── 0274.html │ ├── 0274.sparql │ ├── 0275.html │ ├── 0275.sparql │ ├── 0276.html │ ├── 0276.sparql │ ├── 0277.html │ ├── 0277.sparql │ ├── 0278.html │ ├── 0278.sparql │ ├── 0279.html │ ├── 0279.sparql │ ├── 0280.html │ ├── 0280.sparql │ ├── 0281.html │ ├── 0281.sparql │ ├── 0282.html │ ├── 0282.sparql │ ├── 0283.html │ ├── 0283.sparql │ ├── 0284.html │ ├── 0284.sparql │ ├── 0285.html │ ├── 0285.sparql │ ├── 0286.html │ ├── 0286.sparql │ ├── 0287.html │ ├── 0287.sparql │ ├── 0289.html │ ├── 0289.sparql │ ├── 0290.html │ ├── 0290.sparql │ ├── 0291.html │ ├── 0291.sparql │ ├── 0292.html │ ├── 0292.sparql │ ├── 0293.html │ ├── 0293.sparql │ ├── 0295.html │ ├── 0295.sparql │ ├── 0296.html │ ├── 0296.sparql │ ├── 0297.html │ ├── 0297.sparql │ ├── 0298.html │ ├── 0298.sparql │ ├── 0299.html │ ├── 0299.sparql │ ├── 0300.html │ ├── 0300.sparql │ ├── 0301.html │ ├── 0301.sparql │ ├── 0302.html │ ├── 0302.sparql │ ├── 0303.html │ ├── 0303.sparql │ ├── 0305.html │ ├── 0305.sparql │ ├── 0306.html │ ├── 0306.sparql │ ├── 0307.html │ ├── 0307.sparql │ ├── 0308.html │ ├── 0308.sparql │ ├── 0309.html │ ├── 0309.sparql │ ├── 0310.html │ ├── 0310.sparql │ ├── 0311.html │ ├── 0311.sparql │ ├── 0312.html │ ├── 0312.sparql │ ├── 0313.html │ ├── 0313.sparql │ ├── 0314.html │ ├── 0314.sparql │ ├── 0315.html │ ├── 0315.sparql │ ├── 0316.html │ ├── 0316.sparql │ ├── 0317.html │ ├── 0317.sparql │ ├── 0318.html │ ├── 0318.sparql │ ├── 0319.html │ ├── 0319.sparql │ ├── 0320.html │ ├── 0320.sparql │ ├── 0321.html │ ├── 0321.sparql │ ├── 0322.html │ ├── 0322.sparql │ ├── 0323.html │ ├── 0323.sparql │ ├── 0324.html │ ├── 0324.sparql │ ├── 0325.html │ ├── 0325.sparql │ ├── 0326.html │ ├── 0326.sparql │ ├── 0327.html │ ├── 0327.sparql │ ├── 0328.html │ ├── 0328.sparql │ ├── 0329.html │ ├── 0329.sparql │ ├── 0330.html │ ├── 0330.sparql │ ├── 0331.html │ ├── 0331.sparql │ ├── 0332.html │ ├── 0332.sparql │ ├── 0333.html │ ├── 0333.sparql │ ├── 0334.html │ └── 0334.sparql │ ├── svg │ ├── 0201.sparql │ ├── 0201.svg │ ├── 0202.sparql │ ├── 0202.svg │ ├── 0203.sparql │ ├── 0203.svg │ ├── 0214.sparql │ ├── 0214.svg │ ├── 0218.sparql │ ├── 0218.svg │ ├── 0219.sparql │ ├── 0219.svg │ ├── 0220.sparql │ ├── 0220.svg │ ├── 0221.sparql │ ├── 0221.svg │ ├── 0222.sparql │ ├── 0222.svg │ ├── 0223.sparql │ ├── 0223.svg │ ├── 0224.sparql │ ├── 0224.svg │ ├── 0225.sparql │ ├── 0225.svg │ ├── 0226.sparql │ ├── 0226.svg │ ├── 0227.sparql │ ├── 0227.svg │ ├── 0234.sparql │ ├── 0234.svg │ ├── 0235.sparql │ ├── 0235.svg │ ├── 0236.sparql │ ├── 0236.svg │ ├── 0237.sparql │ ├── 0237.svg │ ├── 0238.sparql │ ├── 0238.svg │ ├── 0239.sparql │ ├── 0239.svg │ ├── 0240.sparql │ ├── 0240.svg │ ├── 0241.sparql │ ├── 0241.svg │ ├── 0242.sparql │ ├── 0242.svg │ ├── 0243.sparql │ ├── 0243.svg │ ├── 0244.sparql │ ├── 0244.svg │ ├── 0245.sparql │ ├── 0245.svg │ ├── 0259.sparql │ ├── 0259.svg │ ├── 0289.sparql │ ├── 0289.svg │ ├── 0290.sparql │ ├── 0290.svg │ ├── 0291.sparql │ ├── 0291.svg │ ├── 0292.sparql │ ├── 0292.svg │ ├── 0293.sparql │ ├── 0293.svg │ ├── 0295.sparql │ ├── 0295.svg │ ├── 0296.sparql │ ├── 0296.svg │ ├── 0297.sparql │ ├── 0297.svg │ ├── 0298.sparql │ ├── 0298.svg │ ├── 0299.sparql │ ├── 0299.svg │ ├── 0300.sparql │ ├── 0300.svg │ ├── 0301.sparql │ ├── 0301.svg │ ├── 0302.sparql │ ├── 0302.svg │ ├── 0304.sparql │ ├── 0304.svg │ ├── 0311.sparql │ └── 0311.svg │ ├── xhtml1 │ ├── 0001.sparql │ ├── 0001.xhtml │ ├── 0006.sparql │ ├── 0006.xhtml │ ├── 0007.sparql │ ├── 0007.xhtml │ ├── 0008.sparql │ ├── 0008.xhtml │ ├── 0009.sparql │ ├── 0009.xhtml │ ├── 0010.sparql │ ├── 0010.xhtml │ ├── 0012.sparql │ ├── 0012.xhtml │ ├── 0013.sparql │ ├── 0013.xhtml │ ├── 0014.sparql │ ├── 0014.xhtml │ ├── 0015.sparql │ ├── 0015.xhtml │ ├── 0017.sparql │ ├── 0017.xhtml │ ├── 0018.sparql │ ├── 0018.xhtml │ ├── 0019.sparql │ ├── 0019.xhtml │ ├── 0020.sparql │ ├── 0020.xhtml │ ├── 0021.sparql │ ├── 0021.xhtml │ ├── 0023.sparql │ ├── 0023.xhtml │ ├── 0025.sparql │ ├── 0025.xhtml │ ├── 0026.sparql │ ├── 0026.xhtml │ ├── 0027.sparql │ ├── 0027.xhtml │ ├── 0029.sparql │ ├── 0029.xhtml │ ├── 0030.sparql │ ├── 0030.xhtml │ ├── 0031.sparql │ ├── 0031.xhtml │ ├── 0032.sparql │ ├── 0032.xhtml │ ├── 0033.sparql │ ├── 0033.xhtml │ ├── 0034.sparql │ ├── 0034.xhtml │ ├── 0035.sparql │ ├── 0035.xhtml │ ├── 0036.sparql │ ├── 0036.xhtml │ ├── 0037.sparql │ ├── 0037.xhtml │ ├── 0038.sparql │ ├── 0038.xhtml │ ├── 0039.sparql │ ├── 0039.xhtml │ ├── 0041.sparql │ ├── 0041.xhtml │ ├── 0048.sparql │ ├── 0048.xhtml │ ├── 0049.sparql │ ├── 0049.xhtml │ ├── 0050.sparql │ ├── 0050.xhtml │ ├── 0051.sparql │ ├── 0051.xhtml │ ├── 0052.sparql │ ├── 0052.xhtml │ ├── 0053.sparql │ ├── 0053.xhtml │ ├── 0054.sparql │ ├── 0054.xhtml │ ├── 0055.sparql │ ├── 0055.xhtml │ ├── 0056.sparql │ ├── 0056.xhtml │ ├── 0057.sparql │ ├── 0057.xhtml │ ├── 0059.sparql │ ├── 0059.xhtml │ ├── 0060.sparql │ ├── 0060.xhtml │ ├── 0061.sparql │ ├── 0061.xhtml │ ├── 0062.sparql │ ├── 0062.xhtml │ ├── 0063.sparql │ ├── 0063.xhtml │ ├── 0064.sparql │ ├── 0064.xhtml │ ├── 0065.sparql │ ├── 0065.xhtml │ ├── 0066.sparql │ ├── 0066.xhtml │ ├── 0067.sparql │ ├── 0067.xhtml │ ├── 0068.sparql │ ├── 0068.xhtml │ ├── 0069.sparql │ ├── 0069.xhtml │ ├── 0070.sparql │ ├── 0070.xhtml │ ├── 0071.sparql │ ├── 0071.xhtml │ ├── 0072.sparql │ ├── 0072.xhtml │ ├── 0073.sparql │ ├── 0073.xhtml │ ├── 0074.sparql │ ├── 0074.xhtml │ ├── 0075.sparql │ ├── 0075.xhtml │ ├── 0076.sparql │ ├── 0076.xhtml │ ├── 0077.sparql │ ├── 0077.xhtml │ ├── 0079.sparql │ ├── 0079.xhtml │ ├── 0080.sparql │ ├── 0080.xhtml │ ├── 0083.sparql │ ├── 0083.xhtml │ ├── 0084.sparql │ ├── 0084.xhtml │ ├── 0085.sparql │ ├── 0085.xhtml │ ├── 0087.sparql │ ├── 0087.xhtml │ ├── 0088.sparql │ ├── 0088.xhtml │ ├── 0089.sparql │ ├── 0089.xhtml │ ├── 0091.sparql │ ├── 0091.xhtml │ ├── 0093.sparql │ ├── 0093.xhtml │ ├── 0099.sparql │ ├── 0099.xhtml │ ├── 0104.sparql │ ├── 0104.xhtml │ ├── 0106.sparql │ ├── 0106.xhtml │ ├── 0107.sparql │ ├── 0107.xhtml │ ├── 0108.sparql │ ├── 0108.xhtml │ ├── 0110.sparql │ ├── 0110.xhtml │ ├── 0111.sparql │ ├── 0111.xhtml │ ├── 0112.sparql │ ├── 0112.xhtml │ ├── 0113.sparql │ ├── 0113.xhtml │ ├── 0114.sparql │ ├── 0114.xhtml │ ├── 0115.sparql │ ├── 0115.xhtml │ ├── 0117.sparql │ ├── 0117.xhtml │ ├── 0118.sparql │ ├── 0118.xhtml │ ├── 0119.sparql │ ├── 0119.xhtml │ ├── 0120.sparql │ ├── 0120.xhtml │ ├── 0121.sparql │ ├── 0121.xhtml │ ├── 0122.sparql │ ├── 0122.xhtml │ ├── 0126.sparql │ ├── 0126.xhtml │ ├── 0131.sparql │ ├── 0131.xhtml │ ├── 0134.sparql │ ├── 0134.xhtml │ ├── 0140.sparql │ ├── 0140.xhtml │ ├── 0147.sparql │ ├── 0147.xhtml │ ├── 0172.sparql │ ├── 0172.xhtml │ ├── 0173.sparql │ ├── 0173.xhtml │ ├── 0174.sparql │ ├── 0174.xhtml │ ├── 0175.sparql │ ├── 0175.xhtml │ ├── 0176.sparql │ ├── 0176.xhtml │ ├── 0177.sparql │ ├── 0177.xhtml │ ├── 0178.sparql │ ├── 0178.xhtml │ ├── 0179.sparql │ ├── 0179.xhtml │ ├── 0180.sparql │ ├── 0180.xhtml │ ├── 0181.sparql │ ├── 0181.xhtml │ ├── 0182.sparql │ ├── 0182.xhtml │ ├── 0183.sparql │ ├── 0183.xhtml │ ├── 0186.sparql │ ├── 0186.xhtml │ ├── 0187.sparql │ ├── 0187.xhtml │ ├── 0188.sparql │ ├── 0188.xhtml │ ├── 0189.sparql │ ├── 0189.xhtml │ ├── 0190.sparql │ ├── 0190.xhtml │ ├── 0196.sparql │ ├── 0196.xhtml │ ├── 0197.sparql │ ├── 0197.xhtml │ ├── 0198.sparql │ ├── 0198.xhtml │ ├── 0206.sparql │ ├── 0206.xhtml │ ├── 0207.sparql │ ├── 0207.xhtml │ ├── 0213.sparql │ ├── 0213.xhtml │ ├── 0214.sparql │ ├── 0214.xhtml │ ├── 0216.sparql │ ├── 0216.xhtml │ ├── 0217.sparql │ ├── 0217.xhtml │ ├── 0218.sparql │ ├── 0218.xhtml │ ├── 0219.sparql │ ├── 0219.xhtml │ ├── 0220.sparql │ ├── 0220.xhtml │ ├── 0221.sparql │ ├── 0221.xhtml │ ├── 0222.sparql │ ├── 0222.xhtml │ ├── 0223.sparql │ ├── 0223.xhtml │ ├── 0224.sparql │ ├── 0224.xhtml │ ├── 0225.sparql │ ├── 0225.xhtml │ ├── 0226.sparql │ ├── 0226.xhtml │ ├── 0227.sparql │ ├── 0227.xhtml │ ├── 0228.sparql │ ├── 0228.xhtml │ ├── 0229.sparql │ ├── 0229.xhtml │ ├── 0230.sparql │ ├── 0230.xhtml │ ├── 0231.sparql │ ├── 0231.xhtml │ ├── 0232.sparql │ ├── 0232.xhtml │ ├── 0233.sparql │ ├── 0233.xhtml │ ├── 0234.sparql │ ├── 0234.xhtml │ ├── 0235.sparql │ ├── 0235.xhtml │ ├── 0236.sparql │ ├── 0236.xhtml │ ├── 0237.sparql │ ├── 0237.xhtml │ ├── 0238.sparql │ ├── 0238.xhtml │ ├── 0239.sparql │ ├── 0239.xhtml │ ├── 0240.sparql │ ├── 0240.xhtml │ ├── 0241.sparql │ ├── 0241.xhtml │ ├── 0242.sparql │ ├── 0242.xhtml │ ├── 0243.sparql │ ├── 0243.xhtml │ ├── 0244.sparql │ ├── 0244.xhtml │ ├── 0245.sparql │ ├── 0245.xhtml │ ├── 0246.sparql │ ├── 0246.xhtml │ ├── 0247.sparql │ ├── 0247.xhtml │ ├── 0248.sparql │ ├── 0248.xhtml │ ├── 0249.sparql │ ├── 0249.xhtml │ ├── 0250.sparql │ ├── 0250.xhtml │ ├── 0251.sparql │ ├── 0251.xhtml │ ├── 0252.sparql │ ├── 0252.xhtml │ ├── 0253.sparql │ ├── 0253.xhtml │ ├── 0254.sparql │ ├── 0254.xhtml │ ├── 0255.sparql │ ├── 0255.xhtml │ ├── 0256.sparql │ ├── 0256.xhtml │ ├── 0257.sparql │ ├── 0257.xhtml │ ├── 0258.sparql │ ├── 0258.xhtml │ ├── 0259.sparql │ ├── 0259.xhtml │ ├── 0260.sparql │ ├── 0260.xhtml │ ├── 0261.sparql │ ├── 0261.xhtml │ ├── 0262.sparql │ ├── 0262.xhtml │ ├── 0263.sparql │ ├── 0263.xhtml │ ├── 0264.sparql │ ├── 0264.xhtml │ ├── 0265.sparql │ ├── 0265.xhtml │ ├── 0266.sparql │ ├── 0266.xhtml │ ├── 0267.sparql │ ├── 0267.xhtml │ ├── 0268.sparql │ ├── 0268.xhtml │ ├── 0269.sparql │ ├── 0269.xhtml │ ├── 0271.sparql │ ├── 0271.xhtml │ ├── 0289.sparql │ ├── 0289.xhtml │ ├── 0290.sparql │ ├── 0290.xhtml │ ├── 0291.sparql │ ├── 0291.xhtml │ ├── 0292.sparql │ ├── 0292.xhtml │ ├── 0293.sparql │ ├── 0293.xhtml │ ├── 0295.sparql │ ├── 0295.xhtml │ ├── 0296.sparql │ ├── 0296.xhtml │ ├── 0297.sparql │ ├── 0297.xhtml │ ├── 0298.sparql │ ├── 0298.xhtml │ ├── 0299.sparql │ ├── 0299.xhtml │ ├── 0300.sparql │ ├── 0300.xhtml │ ├── 0301.sparql │ ├── 0301.xhtml │ ├── 0302.sparql │ ├── 0302.xhtml │ ├── 0305.sparql │ ├── 0305.xhtml │ ├── 0306.sparql │ ├── 0306.xhtml │ ├── 0307.sparql │ ├── 0307.xhtml │ ├── 0308.sparql │ ├── 0308.xhtml │ ├── 0309.sparql │ ├── 0309.xhtml │ ├── 0310.sparql │ ├── 0310.xhtml │ ├── 0311.sparql │ ├── 0311.xhtml │ ├── 0314.sparql │ ├── 0314.xhtml │ ├── 0318.sparql │ ├── 0318.xhtml │ ├── 0319.sparql │ ├── 0319.xhtml │ ├── 0320.sparql │ ├── 0320.xhtml │ ├── 0329.sparql │ ├── 0329.xhtml │ ├── 0330.sparql │ ├── 0330.xhtml │ ├── 0331.sparql │ ├── 0331.xhtml │ ├── 0332.sparql │ └── 0332.xhtml │ └── xml │ ├── 0001.sparql │ ├── 0001.xml │ ├── 0006.sparql │ ├── 0006.xml │ ├── 0007.sparql │ ├── 0007.xml │ ├── 0008.sparql │ ├── 0008.xml │ ├── 0009.sparql │ ├── 0009.xml │ ├── 0010.sparql │ ├── 0010.xml │ ├── 0012.sparql │ ├── 0012.xml │ ├── 0013.sparql │ ├── 0013.xml │ ├── 0014.sparql │ ├── 0014.xml │ ├── 0015.sparql │ ├── 0015.xml │ ├── 0017.sparql │ ├── 0017.xml │ ├── 0018.sparql │ ├── 0018.xml │ ├── 0019.sparql │ ├── 0019.xml │ ├── 0020.sparql │ ├── 0020.xml │ ├── 0021.sparql │ ├── 0021.xml │ ├── 0023.sparql │ ├── 0023.xml │ ├── 0025.sparql │ ├── 0025.xml │ ├── 0026.sparql │ ├── 0026.xml │ ├── 0027.sparql │ ├── 0027.xml │ ├── 0029.sparql │ ├── 0029.xml │ ├── 0030.sparql │ ├── 0030.xml │ ├── 0031.sparql │ ├── 0031.xml │ ├── 0032.sparql │ ├── 0032.xml │ ├── 0033.sparql │ ├── 0033.xml │ ├── 0034.sparql │ ├── 0034.xml │ ├── 0035.sparql │ ├── 0035.xml │ ├── 0036.sparql │ ├── 0036.xml │ ├── 0037.sparql │ ├── 0037.xml │ ├── 0038.sparql │ ├── 0038.xml │ ├── 0039.sparql │ ├── 0039.xml │ ├── 0041.sparql │ ├── 0041.xml │ ├── 0048.sparql │ ├── 0048.xml │ ├── 0049.sparql │ ├── 0049.xml │ ├── 0050.sparql │ ├── 0050.xml │ ├── 0051.sparql │ ├── 0051.xml │ ├── 0052.sparql │ ├── 0052.xml │ ├── 0053.sparql │ ├── 0053.xml │ ├── 0054.sparql │ ├── 0054.xml │ ├── 0055.sparql │ ├── 0055.xml │ ├── 0056.sparql │ ├── 0056.xml │ ├── 0057.sparql │ ├── 0057.xml │ ├── 0059.sparql │ ├── 0059.xml │ ├── 0060.sparql │ ├── 0060.xml │ ├── 0063.sparql │ ├── 0063.xml │ ├── 0064.sparql │ ├── 0064.xml │ ├── 0065.sparql │ ├── 0065.xml │ ├── 0067.sparql │ ├── 0067.xml │ ├── 0068.sparql │ ├── 0068.xml │ ├── 0071.sparql │ ├── 0071.xml │ ├── 0079.sparql │ ├── 0079.xml │ ├── 0080.sparql │ ├── 0080.xml │ ├── 0083.sparql │ ├── 0083.xml │ ├── 0084.sparql │ ├── 0084.xml │ ├── 0085.sparql │ ├── 0085.xml │ ├── 0087.sparql │ ├── 0087.xml │ ├── 0088.sparql │ ├── 0088.xml │ ├── 0089.sparql │ ├── 0089.xml │ ├── 0091.sparql │ ├── 0091.xml │ ├── 0093.sparql │ ├── 0093.xml │ ├── 0099.sparql │ ├── 0099.xml │ ├── 0104.sparql │ ├── 0104.xml │ ├── 0106.sparql │ ├── 0106.xml │ ├── 0107.sparql │ ├── 0107.xml │ ├── 0108.sparql │ ├── 0108.xml │ ├── 0112.sparql │ ├── 0112.xml │ ├── 0113.sparql │ ├── 0113.xml │ ├── 0115.sparql │ ├── 0115.xml │ ├── 0118.sparql │ ├── 0118.xml │ ├── 0119.sparql │ ├── 0119.xml │ ├── 0120.sparql │ ├── 0120.xml │ ├── 0121.sparql │ ├── 0121.xml │ ├── 0122.sparql │ ├── 0122.xml │ ├── 0126.sparql │ ├── 0126.xml │ ├── 0140.sparql │ ├── 0140.xml │ ├── 0147.sparql │ ├── 0147.xml │ ├── 0174.sparql │ ├── 0174.xml │ ├── 0175.sparql │ ├── 0175.xml │ ├── 0176.sparql │ ├── 0176.xml │ ├── 0180.sparql │ ├── 0180.xml │ ├── 0181.sparql │ ├── 0181.xml │ ├── 0196.sparql │ ├── 0196.xml │ ├── 0202.sparql │ ├── 0202.xml │ ├── 0203.sparql │ ├── 0203.xml │ ├── 0206.sparql │ ├── 0206.xml │ ├── 0207.sparql │ ├── 0207.xml │ ├── 0213.sparql │ ├── 0213.xml │ ├── 0214.sparql │ ├── 0214.xml │ ├── 0229.sparql │ ├── 0229.xml │ ├── 0235.sparql │ ├── 0235.xml │ ├── 0236.sparql │ ├── 0236.xml │ ├── 0237.sparql │ ├── 0237.xml │ ├── 0238.sparql │ ├── 0238.xml │ ├── 0239.sparql │ ├── 0239.xml │ ├── 0240.sparql │ ├── 0240.xml │ ├── 0241.sparql │ ├── 0241.xml │ ├── 0242.sparql │ ├── 0242.xml │ ├── 0243.sparql │ ├── 0243.xml │ ├── 0244.sparql │ ├── 0244.xml │ ├── 0245.sparql │ ├── 0245.xml │ ├── 0246.sparql │ ├── 0246.xml │ ├── 0247.sparql │ ├── 0247.xml │ ├── 0248.sparql │ ├── 0248.xml │ ├── 0249.sparql │ ├── 0249.xml │ ├── 0250.sparql │ ├── 0250.xml │ ├── 0258.sparql │ ├── 0258.xml │ ├── 0259.sparql │ ├── 0259.xml │ ├── 0261.sparql │ ├── 0261.xml │ ├── 0262.sparql │ ├── 0262.xml │ ├── 0263.sparql │ ├── 0263.xml │ ├── 0264.sparql │ ├── 0264.xml │ ├── 0265.sparql │ ├── 0265.xml │ ├── 0266.sparql │ ├── 0266.xml │ ├── 0267.sparql │ ├── 0267.xml │ ├── 0268.sparql │ ├── 0268.xml │ ├── 0269.sparql │ ├── 0269.xml │ ├── 0271.sparql │ ├── 0271.xml │ ├── 0289.sparql │ ├── 0289.xml │ ├── 0290.sparql │ ├── 0290.xml │ ├── 0291.sparql │ ├── 0291.xml │ ├── 0292.sparql │ ├── 0292.xml │ ├── 0293.sparql │ ├── 0293.xml │ ├── 0295.sparql │ ├── 0295.xml │ ├── 0296.sparql │ ├── 0296.xml │ ├── 0297.sparql │ ├── 0297.xml │ ├── 0298.sparql │ ├── 0298.xml │ ├── 0299.sparql │ ├── 0299.xml │ ├── 0300.sparql │ ├── 0300.xml │ ├── 0301.sparql │ ├── 0301.xml │ ├── 0302.sparql │ ├── 0302.xml │ ├── 0305.sparql │ ├── 0305.xml │ ├── 0307.sparql │ ├── 0307.xml │ ├── 0308.sparql │ ├── 0308.xml │ ├── 0309.sparql │ ├── 0309.xml │ ├── 0310.sparql │ ├── 0310.xml │ ├── 0311.sparql │ ├── 0311.xml │ ├── 0314.sparql │ ├── 0314.xml │ ├── 0318.sparql │ ├── 0318.xml │ ├── 0319.sparql │ ├── 0319.xml │ ├── 0320.sparql │ ├── 0320.xml │ ├── 0329.sparql │ ├── 0329.xml │ ├── 0330.sparql │ ├── 0330.xml │ ├── 0331.sparql │ ├── 0331.xml │ ├── 0332.sparql │ └── 0332.xml └── testng.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /checkstyle/LICENSE_HEADER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/checkstyle/LICENSE_HEADER -------------------------------------------------------------------------------- /checkstyle/checkstyle-other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/checkstyle/checkstyle-other.xml -------------------------------------------------------------------------------- /checkstyle/checkstyle-src.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/checkstyle/checkstyle-src.xml -------------------------------------------------------------------------------- /checkstyle/suppressions-src.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/checkstyle/suppressions-src.xml -------------------------------------------------------------------------------- /core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/core/pom.xml -------------------------------------------------------------------------------- /core/src/main/java/org/semarglproject/ri/RIUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/core/src/main/java/org/semarglproject/ri/RIUtils.java -------------------------------------------------------------------------------- /core/src/main/java/org/semarglproject/sink/CharSink.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/core/src/main/java/org/semarglproject/sink/CharSink.java -------------------------------------------------------------------------------- /core/src/main/java/org/semarglproject/sink/DataSink.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/core/src/main/java/org/semarglproject/sink/DataSink.java -------------------------------------------------------------------------------- /core/src/main/java/org/semarglproject/sink/Pipe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/core/src/main/java/org/semarglproject/sink/Pipe.java -------------------------------------------------------------------------------- /core/src/main/java/org/semarglproject/sink/QuadSink.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/core/src/main/java/org/semarglproject/sink/QuadSink.java -------------------------------------------------------------------------------- /core/src/main/java/org/semarglproject/sink/TripleSink.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/core/src/main/java/org/semarglproject/sink/TripleSink.java -------------------------------------------------------------------------------- /core/src/main/java/org/semarglproject/sink/XmlSink.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/core/src/main/java/org/semarglproject/sink/XmlSink.java -------------------------------------------------------------------------------- /core/src/main/java/org/semarglproject/source/CharSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/core/src/main/java/org/semarglproject/source/CharSource.java -------------------------------------------------------------------------------- /core/src/main/java/org/semarglproject/source/XmlSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/core/src/main/java/org/semarglproject/source/XmlSource.java -------------------------------------------------------------------------------- /core/src/main/java/org/semarglproject/vocab/RDF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/core/src/main/java/org/semarglproject/vocab/RDF.java -------------------------------------------------------------------------------- /core/src/main/java/org/semarglproject/xml/XmlUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/core/src/main/java/org/semarglproject/xml/XmlUtils.java -------------------------------------------------------------------------------- /core/src/test/java/org/semarglproject/test/TestNGHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/core/src/test/java/org/semarglproject/test/TestNGHelper.java -------------------------------------------------------------------------------- /examples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/examples/pom.xml -------------------------------------------------------------------------------- /examples/src/main/resources/WordNet_small.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/examples/src/main/resources/WordNet_small.xml -------------------------------------------------------------------------------- /jsonld/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/pom.xml -------------------------------------------------------------------------------- /jsonld/src/main/java/org/semarglproject/vocab/JsonLd.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/main/java/org/semarglproject/vocab/JsonLd.java -------------------------------------------------------------------------------- /jsonld/src/test/resources/fetch_tests.sparql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/fetch_tests.sparql -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/Manifest.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/Manifest.ttl -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0001-out.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0002-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0002-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0003-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0003-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0004-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0004-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0005-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0005-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0006-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0006-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0007-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0007-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0008-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0008-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0009-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0009-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0010-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0010-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0011-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0011-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0012-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0012-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0013-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0013-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0014-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0014-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0015-out.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0016-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0016-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0017-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0017-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0018-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0018-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0019-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0019-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0020-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0020-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0021-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0021-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0022-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0022-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0023-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0023-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0024-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0024-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0025-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0025-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0026-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0026-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0027-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0027-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0028-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0028-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0029-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0029-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0030-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0030-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0031-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0031-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0032-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0032-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0033-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0033-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0034-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0034-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0035-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0035-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0036-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0036-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0037-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0037-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0038-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0038-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0039-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0039-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0040-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0040-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0041-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0041-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0042-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0042-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0043-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0043-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0044-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0044-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0045-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0045-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0046-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0046-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0047-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0047-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0048-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0048-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0049-out.nq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0050-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0050-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0051-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0051-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0052-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0052-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0053-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0053-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0054-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0054-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0055-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0055-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0056-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0056-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/normalize-0057-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/normalize-0057-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0001-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0001-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0001-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0001-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0002-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0002-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0002-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0002-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0003-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0003-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0003-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0003-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0004-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0004-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0004-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0004-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0005-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0005-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0005-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0005-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0006-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0006-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0006-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0006-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0007-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0007-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0007-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0007-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0008-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0008-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0008-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "bar" . 2 | -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0009-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0009-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0009-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "bar" . 2 | -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0010-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0010-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0010-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0010-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0011-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0011-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0011-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0011-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0012-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0012-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0012-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0012-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0013-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0013-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0013-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0013-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0014-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0014-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0014-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0014-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0015-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0015-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0015-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0015-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0016-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0016-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0016-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0016-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0017-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0017-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0017-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0017-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0018-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0018-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0018-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0018-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0019-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0019-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0019-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0019-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0020-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0020-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0020-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0020-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0022-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0022-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0022-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0022-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0023-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0023-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0023-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0023-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0024-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0024-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0024-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0024-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0025-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0025-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0025-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0025-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0026-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0026-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0026-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0026-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0027-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0027-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0027-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0027-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0028-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0028-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0028-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0028-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0029-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0029-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0029-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0029-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0030-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0030-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0030-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0030-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0031-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0031-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0031-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0031-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0032-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0032-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0032-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0032-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0033-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0033-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0033-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0033-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0034-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0034-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0034-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0034-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0035-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0035-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0035-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0035-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0036-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0036-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0036-out.nq: -------------------------------------------------------------------------------- 1 | _:n0 "Term with language definition"@en . 2 | -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0037-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0037-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0037-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0037-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0038-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0038-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0038-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0038-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0039-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0039-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0039-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0039-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0040-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0040-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0040-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0040-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0041-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0041-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0041-out.nq: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0042-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0042-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0042-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0042-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0043-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0043-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0043-out.nq: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0044-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0044-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0044-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0044-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0045-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0045-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0045-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0045-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0046-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0046-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0046-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0046-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0047-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0047-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0047-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0047-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0048-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0048-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0048-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0048-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0049-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0049-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0049-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0049-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0050-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0050-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0050-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0050-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0051-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0051-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0051-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0051-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0052-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0052-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0052-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0052-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0053-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0053-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0053-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0053-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0054-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0054-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0054-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0054-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0055-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0055-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0055-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0055-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0056-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0056-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0056-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0056-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0057-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0057-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0057-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0057-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0058-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0058-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0058-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0058-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0059-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0059-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0059-out.nq: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0060-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0060-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0060-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0060-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0061-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0061-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0061-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0061-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0062-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0062-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0062-out.nq: -------------------------------------------------------------------------------- 1 | _:b0 "v"@en . 2 | -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0063-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0063-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0063-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0063-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0064-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0064-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0064-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0064-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0065-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0065-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0065-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0065-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0066-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0066-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0066-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0066-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0067-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0067-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0067-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0067-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0068-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0068-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0068-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0068-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0069-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0069-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0069-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0069-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0070-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0070-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0070-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0070-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0071-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0071-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0071-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0071-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0072-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0072-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0072-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0072-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0073-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0073-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0073-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0073-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0074-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0074-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0074-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0074-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0075-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0075-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0075-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0075-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0076-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0076-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0076-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0076-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0077-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0077-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0077-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0077-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0078-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0078-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0078-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0078-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0079-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0079-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0079-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0079-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0080-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0080-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0080-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0080-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0081-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0081-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0081-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0081-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0082-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0082-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0082-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0082-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0083-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0083-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0083-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0083-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0084-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0084-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0084-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0084-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0085-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0085-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0085-out.nq: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0086-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0086-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0086-out.nq: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0087-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0087-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0087-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0087-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0088-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0088-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0088-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0088-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0089-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0089-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0089-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0089-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0090-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0090-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0090-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0090-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0091-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0091-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0091-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0091-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0092-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0092-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0092-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0092-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0093-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0093-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0093-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0093-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0094-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0094-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0094-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0094-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0095-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0095-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0095-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0095-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0096-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0096-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0096-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0096-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0097-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0097-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0097-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0097-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0098-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0098-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0098-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0098-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0099-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0099-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0099-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0099-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0100-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0100-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0100-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0100-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0101-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0101-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0101-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0101-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0102-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0102-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0102-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0102-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0103-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0103-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0103-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0103-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0104-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0104-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0104-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0104-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0105-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0105-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0105-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0105-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0106-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0106-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0106-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0106-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0107-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0107-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0107-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0107-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0108-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0108-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0108-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0108-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0109-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0109-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0109-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0109-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0110-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0110-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0110-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0110-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0111-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0111-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0111-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0111-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0112-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0112-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0112-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0112-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0113-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0113-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0113-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0113-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0114-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0114-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0114-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0114-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0115-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0115-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0115-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0115-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0116-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0116-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0116-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0116-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0117-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0117-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0117-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0117-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0118-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0118-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0118-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0118-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0119-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0119-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-0119-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-0119-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-1001-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-1001-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-1001-out.nq: -------------------------------------------------------------------------------- 1 | _:n0 "@language reordering"@en . 2 | -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-1002-in.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-1002-in.jsonld -------------------------------------------------------------------------------- /jsonld/src/test/resources/json-ld-org/toRdf-1002-out.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/json-ld-org/toRdf-1002-out.nq -------------------------------------------------------------------------------- /jsonld/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /jsonld/testng.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/jsonld/testng.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/pom.xml -------------------------------------------------------------------------------- /rdf/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/pom.xml -------------------------------------------------------------------------------- /rdf/src/main/java/org/semarglproject/rdf/NQuadsParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/main/java/org/semarglproject/rdf/NQuadsParser.java -------------------------------------------------------------------------------- /rdf/src/main/java/org/semarglproject/rdf/NTriplesParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/main/java/org/semarglproject/rdf/NTriplesParser.java -------------------------------------------------------------------------------- /rdf/src/main/java/org/semarglproject/rdf/RdfXmlParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/main/java/org/semarglproject/rdf/RdfXmlParser.java -------------------------------------------------------------------------------- /rdf/src/main/java/org/semarglproject/vocab/RDFS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/main/java/org/semarglproject/vocab/RDFS.java -------------------------------------------------------------------------------- /rdf/src/main/java/org/semarglproject/vocab/XSD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/main/java/org/semarglproject/vocab/XSD.java -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/Manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/Manifest.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/comments/test01.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/comments/test01.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/comments/test02.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/comments/test02.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/comments/test03.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/comments/test03.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/comments/test04.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/comments/test04.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/comments/test05.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/comments/test05.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/comments/test06.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/comments/test06.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/comments/test07.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/comments/test07.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/comments/test08.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/comments/test08.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/comments/test09.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/comments/test09.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/comments/test0X.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/comments/test0X.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/comments/test10.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/comments/test10.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/comments/test11.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/comments/test11.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/comments/test12.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/comments/test12.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/comments/test13.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/comments/test13.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/comments/test1X.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/comments/test1X.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/dom/domtest.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/dom/domtest.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/dom/domtest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/dom/domtest.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/error-msgs/test01.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/error-msgs/test01.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/error-msgs/test02.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/error-msgs/test02.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/error-msgs/test03.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/error-msgs/test03.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/error-msgs/test04.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/error-msgs/test04.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/error-msgs/test05.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/error-msgs/test05.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/error-msgs/test06.rdf: -------------------------------------------------------------------------------- 1 | 2 | 3 | A Dollin Special 4 | -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/error-msgs/test07.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/error-msgs/test07.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/error-msgs/testutf8.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/error-msgs/testutf8.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/gc/someWordNet.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/gc/someWordNet.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/i18n/arabic-macarabic.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/i18n/arabic-macarabic.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/i18n/arabic-utf8.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/i18n/arabic-utf8.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/i18n/arabic-windows-1256.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/i18n/arabic-windows-1256.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/i18n/badbom16be.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/i18n/badbom16be.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/i18n/badbom16le.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/i18n/badbom16le.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/i18n/badbom8.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/i18n/badbom8.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/i18n/bom.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/i18n/bom.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/i18n/bom16be.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/i18n/bom16be.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/i18n/bom16le.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/i18n/bom16le.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/i18n/bom8.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/i18n/bom8.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/i18n/eq-bug73_0.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/i18n/eq-bug73_0.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/i18n/eq-bug73_1.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/i18n/eq-bug73_1.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/i18n/eq-bug73_2.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/i18n/eq-bug73_2.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/i18n/i18nID.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/i18n/i18nID.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/i18n/icubug.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/i18n/icubug.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/i18n/icubugtwo.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/i18n/icubugtwo.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/i18n/latin1.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/i18n/latin1.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/i18n/macroman.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/i18n/macroman.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/i18n/t9000.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/i18n/t9000.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/i18n/t9000.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/i18n/t9000.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/parsetype/bug68_0.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/parsetype/bug68_0.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/parsetype/bug68_0.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/parsetype/bug68_0.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/qname-in-ID/bug74_0.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/qname-in-ID/bug74_0.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/qname-in-ID/bug74_0.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/qname-in-ID/bug74_0.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/rdf-nnn/bad-bug67_0.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/rdf-nnn/bad-bug67_0.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/rdf-nnn/bad-bug67_0.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/rdf-nnn/bad-bug67_0.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/rdf-nnn/bad-bug67_1.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/rdf-nnn/bad-bug67_1.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/rdf-nnn/bad-bug67_2.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/rdf-nnn/bad-bug67_2.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/rdf-nnn/bad-bug67_3.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/rdf-nnn/bad-bug67_3.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/rdf-nnn/bad-bug67_4.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/rdf-nnn/bad-bug67_4.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/rdf-nnn/bad-bug67_5.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/rdf-nnn/bad-bug67_5.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/rdf-nnn/bad-bug67_5.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/rdf-nnn/bad-bug67_5.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/rdf-nnn/bad-bug67_6.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/rdf-nnn/bad-bug67_6.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/rdf-nnn/bad-bug67_6.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/rdf-nnn/bad-bug67_6.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/rdf-nnn/bad-bug67_7.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/rdf-nnn/bad-bug67_7.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/rdf-nnn/bad-bug67_7.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/rdf-nnn/bad-bug67_7.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/rdf-nnn/bad-bug67_8.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/rdf-nnn/bad-bug67_8.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/rdf-nnn/bad-bug67_8.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/rdf-nnn/bad-bug67_8.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/rdf-nnn/bad-bug67_9.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/rdf-nnn/bad-bug67_9.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/rdf-nnn/bad-bug67_9.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/rdf-nnn/bad-bug67_9.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/rfc2396-issue/bug51_0.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/rfc2396-issue/bug51_0.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/rfc2396-issue/bug51_0.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/rfc2396-issue/bug51_0.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/rfc2396-issue/fileURI.nt: -------------------------------------------------------------------------------- 1 | _:a . -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/rfc2396-issue/fileURI.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/rfc2396-issue/fileURI.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/scope/test01.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/scope/test01.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/scope/test02.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/scope/test02.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/scope/test03.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/scope/test03.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/scope/test04.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/scope/test04.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/scope/test05.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/scope/test05.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/scope/test06.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/scope/test06.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/syntax-errors/error001-bad.nt: -------------------------------------------------------------------------------- 1 | _:jA8 _:jA10 . 2 | -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/syntax-errors/error001-good.nt: -------------------------------------------------------------------------------- 1 | _:jA8 _:jA9 . 2 | -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/syntax-errors/error001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/syntax-errors/error001.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/syntax-errors/error002-bad.nt: -------------------------------------------------------------------------------- 1 | _:jA15 _:jA17 . 2 | -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/syntax-errors/error002-good.nt: -------------------------------------------------------------------------------- 1 | _:jA15 _:jA16 . 2 | -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/syntax-errors/error002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/syntax-errors/error002.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/syntax-errors/error003-bad.nt: -------------------------------------------------------------------------------- 1 | _:jA22 _:jA24 . 2 | -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/syntax-errors/error003-good.nt: -------------------------------------------------------------------------------- 1 | _:jA22 _:jA23 . 2 | -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/syntax-errors/error003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/syntax-errors/error003.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/base-bad.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/base-bad.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/base-good.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/base-good.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/base.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/base.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/collection-bad.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/collection-bad.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/collection-good.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/collection-good.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/collection.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/collection.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/damlcollection-bad.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/damlcollection-bad.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/damlcollection-good.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/damlcollection-good.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/damlcollection.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/damlcollection.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/lang-bad.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/lang-bad.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/lang-good.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/lang-good.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/lang.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/lang.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/propValueA-bad.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/propValueA-bad.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/propValueA-good.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/propValueA-good.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/propValueA.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/propValueA.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/propValueB-bad.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/propValueB-bad.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/propValueB-good.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/propValueB.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/propValueB.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/propValueC-bad.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/propValueC-bad.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/propValueC-good.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/propValueC-good.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/propValueC.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/propValueC.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/propValueD-bad.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/propValueD-bad.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/propValueD-good.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/propValueD-good.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/propValueD.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/propValueD.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/propValueE-bad.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/propValueE-bad.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/propValueE-good.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/propValueE-good.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/propValueE.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/propValueE.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/property-bad.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/property-bad.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/property-good.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/property-good.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/property.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/property.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/ptUnknown-bad.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/ptUnknown-bad.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/ptUnknown-good.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/ptUnknown.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/ptUnknown.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/typedLiteral-bad.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/typedLiteral-bad.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/typedLiteral-good.nt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/typedLiteral.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/typedLiteral.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/typedNode-bad.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/typedNode-bad.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/typedNode-good.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/typedNode-good.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/tainting/typedNode.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/tainting/typedNode.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/unqualified/attribute.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/unqualified/attribute.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/unqualified/property.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/unqualified/property.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/unqualified/typedNode.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/unqualified/typedNode.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/xml-literals/html.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/xml-literals/html.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/xml-literals/html.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/xml-literals/html.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/xml-literals/owls.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/xml-literals/owls.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/xml-literals/reported1.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/xml-literals/reported1.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/xml-literals/reported1.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/xml-literals/reported1.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/xml-literals/reported2.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/xml-literals/reported2.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/xml-literals/reported2.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/xml-literals/reported2.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/xml-literals/reported3.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/xml-literals/reported3.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/xml-literals/reported3.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/xml-literals/reported3.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/xmlbase/danbri.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/xmlbase/danbri.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/xmlbase/danbri.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/xmlbase/danbri.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/xmlns/bad01.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/xmlns/bad01.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/xmlns/food.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/xmlns/food.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/xmlns/test01.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/xmlns/test01.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/xmlns/test02.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/xmlns/test02.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/xmlns/test03.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/xmlns/test03.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/xmlns/test0X.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/xmlns/test0X.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/arp/xmlns/wine.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/arp/xmlns/wine.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/fetch_ntriples_tests.sparql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/fetch_ntriples_tests.sparql -------------------------------------------------------------------------------- /rdf/src/test/resources/fetch_rdfxml_tests.sparql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/fetch_rdfxml_tests.sparql -------------------------------------------------------------------------------- /rdf/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/Manifest.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/Manifest.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/amp-in-url/test001.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/amp-in-url/test001.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/amp-in-url/test001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/amp-in-url/test001.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/datatypes-intensional/test001.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/datatypes-intensional/test001.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/datatypes-intensional/test002.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/datatypes-intensional/test002.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/datatypes/test001.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/datatypes/test001.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/datatypes/test001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/datatypes/test001.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/datatypes/test002.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/datatypes/test002.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/datatypes/test002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/datatypes/test002.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/datatypes/test002b.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/datatypes/test002b.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/datatypes/test003a.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/datatypes/test003a.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/datatypes/test003b.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/datatypes/test003b.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/datatypes/test004a.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/datatypes/test004a.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/datatypes/test004b.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/datatypes/test004b.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/datatypes/test004c.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/datatypes/test004c.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/datatypes/test005a.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/datatypes/test005a.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/datatypes/test005b.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/datatypes/test005b.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/datatypes/test006.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/datatypes/test006.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/datatypes/test007a.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/datatypes/test007a.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/datatypes/test007b.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/datatypes/test007b.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/datatypes/test008a.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/datatypes/test008a.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/datatypes/test008b.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/datatypes/test008b.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/datatypes/test009a.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/datatypes/test009a.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/datatypes/test009b.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/datatypes/test009b.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/datatypes/test010.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/datatypes/test010.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/datatypes/test011a.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/datatypes/test011a.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/datatypes/test011b.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/datatypes/test011b.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/horst-01/test001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/horst-01/test001.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/horst-01/test002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/horst-01/test002.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/horst-01/test003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/horst-01/test003.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/horst-01/test004.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/horst-01/test004.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/pfps-10/test001a.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/pfps-10/test001a.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/pfps-10/test001b.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/pfps-10/test001b.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdf-charmod-literals/error001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdf-charmod-literals/error001.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdf-charmod-literals/error002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdf-charmod-literals/error002.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdf-charmod-literals/test001.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdf-charmod-literals/test001.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdf-charmod-literals/test001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdf-charmod-literals/test001.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdf-charmod-uris/error001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdf-charmod-uris/error001.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdf-charmod-uris/test001.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdf-charmod-uris/test001.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdf-charmod-uris/test001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdf-charmod-uris/test001.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdf-charmod-uris/test002.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdf-charmod-uris/test002.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdf-charmod-uris/test002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdf-charmod-uris/test002.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-abouteach/error001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-abouteach/error001.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-abouteach/error002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-abouteach/error002.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test001.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test001.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test001.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test002.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test002.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test002.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test003.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test003.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test003.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test004.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test004.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test004.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test004.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test005.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test005.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test005.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test005.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test006.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test006.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test006.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test006.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test007.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test007.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test008.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test008.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test008.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test008.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test009.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test009.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test009.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test009.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test010.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test010.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test010a.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test010a.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test010b.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test010b.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test011.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test011.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test011a.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test011a.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test011b.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test011b.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test012.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test012.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test012a.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test012a.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test012b.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-nested-bagIDs/test012b.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-para196/test001.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-para196/test001.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-para196/test001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-para196/test001.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-parseType/error001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-parseType/error001.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-parseType/error002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-parseType/error002.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-parseType/error003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-parseType/error003.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-id/error001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-id/error001.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-id/error002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-id/error002.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-id/error003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-id/error003.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-id/error004.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-id/error004.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-id/error005.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-id/error005.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-id/error006.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-id/error006.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-id/error007.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-id/error007.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-001.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-002.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-003.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-004.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-004.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-005.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-005.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-006.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-006.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-007.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-007.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-008.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-008.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-009.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-009.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-010.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-010.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-011.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-011.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-012.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-012.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-013.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-013.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-014.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-014.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-015.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-015.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-016.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-016.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-017.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-017.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-018.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-018.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-019.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-019.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-020.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/error-020.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-001.nt: -------------------------------------------------------------------------------- 1 | # Empty - no triples are generated 2 | -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-001.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-002.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-002.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-002.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-003.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-003.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-003.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-004.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-004.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-004.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-004.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-005.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-005.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-005.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-005.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-006.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-006.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-006.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-006.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-007.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-007.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-007.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-007.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-008.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-008.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-008.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-008.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-009.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-009.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-009.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-009.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-010.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-010.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-010.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-010.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-011.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-011.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-011.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-011.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-012.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-012.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-012.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-012.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-013.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-013.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-013.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-013.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-014.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-014.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-014.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-014.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-015.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-015.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-015.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-015.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-016.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-016.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-016.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-016.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-017.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-017.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-017.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-017.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-018.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-018.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-018.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-018.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-019.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-019.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-019.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-019.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-020.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-020.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-020.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-020.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-021.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-021.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-021.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-021.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-022.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-022.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-022.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-022.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-023.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-023.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-023.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-023.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-024.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-024.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-024.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-024.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-025.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-025.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-025.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-025.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-026.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-026.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-026.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-026.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-027.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-027.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-027.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-027.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-028.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-028.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-028.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-028.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-029.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-029.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-029.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-029.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-030.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-030.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-030.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-030.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-031.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-031.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-031.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-031.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-032.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-032.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-032.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-032.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-033.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-033.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-033.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-033.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-034.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-034.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-034.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-034.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-035.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-035.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-035.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-035.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-036.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-036.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-036.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-036.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-037.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-037.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-037.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/test-037.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/warn-001.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/warn-001.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/warn-001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/warn-001.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/warn-002.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/warn-002.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/warn-002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/warn-002.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/warn-003.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/warn-003.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-rdf-names-use/warn-003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-rdf-names-use/warn-003.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-seq-representation/empty.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-seq-representation/empty.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-uri-substructure/test001.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-uri-substructure/test001.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-xmllang/test001.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-xmllang/test001.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-xmllang/test001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-xmllang/test001.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-xmllang/test002.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-xmllang/test002.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-xmllang/test002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-xmllang/test002.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-xmllang/test003.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-xmllang/test003.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-xmllang/test003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-xmllang/test003.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-xmllang/test004.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-xmllang/test004.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-xmllang/test004.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-xmllang/test004.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-xmllang/test005.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-xmllang/test005.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-xmllang/test005.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-xmllang/test005.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-xmllang/test006.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-xmllang/test006.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-xmllang/test006.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-xmllang/test006.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-xmllang/test007a.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-xmllang/test007a.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-xmllang/test007b.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-xmllang/test007b.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfms-xmllang/test007c.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfms-xmllang/test007c.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfs-domain-and-range/test001.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfs-domain-and-range/test001.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfs-domain-and-range/test001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfs-domain-and-range/test001.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfs-domain-and-range/test002.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfs-domain-and-range/test002.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfs-entailment/test001.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfs-entailment/test001.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/rdfs-entailment/test002.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/rdfs-entailment/test002.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/tex-01/test001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/tex-01/test001.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/tex-01/test002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/tex-01/test002.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xml-canon/test001.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xml-canon/test001.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xml-canon/test001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xml-canon/test001.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/error001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/error001.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test001.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test001.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test001.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test002.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test002.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test002.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test003.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test003.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test003.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test004.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test004.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test004.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test004.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test005.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test005.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test005.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test005.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test006.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test006.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test006.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test006.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test007.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test007.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test007.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test007.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test008.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test008.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test008.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test008.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test009.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test009.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test009.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test009.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test010.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test010.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test010.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test010.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test011.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test011.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test011.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test011.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test012.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test012.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test012.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test012.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test013.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test013.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test013.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test013.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test014.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test014.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test014.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test014.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test015.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test015.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test015.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test015.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test016.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test016.nt -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlbase/test016.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlbase/test016.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlsch-02/test001.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlsch-02/test001.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlsch-02/test002.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlsch-02/test002.rdf -------------------------------------------------------------------------------- /rdf/src/test/resources/w3c/xmlsch-02/test003.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/src/test/resources/w3c/xmlsch-02/test003.rdf -------------------------------------------------------------------------------- /rdf/testng.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdf/testng.xml -------------------------------------------------------------------------------- /rdfa/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdfa/pom.xml -------------------------------------------------------------------------------- /rdfa/src/main/java/org/semarglproject/vocab/OWL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdfa/src/main/java/org/semarglproject/vocab/OWL.java -------------------------------------------------------------------------------- /rdfa/src/main/java/org/semarglproject/vocab/RDFa.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdfa/src/main/java/org/semarglproject/vocab/RDFa.java -------------------------------------------------------------------------------- /rdfa/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdfa/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /rdfa/src/test/resources/rdfa-testsuite/fetch_tests.sparql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdfa/src/test/resources/rdfa-testsuite/fetch_tests.sparql -------------------------------------------------------------------------------- /rdfa/src/test/resources/rdfa-testsuite/manifest.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdfa/src/test/resources/rdfa-testsuite/manifest.ttl -------------------------------------------------------------------------------- /rdfa/src/test/resources/rdfa-testsuite/rdfa1.1/html4/0175.sparql: -------------------------------------------------------------------------------- 1 | ASK WHERE { 2 | ?a "Gregg Kellogg" . 3 | FILTER isBlank(?a) 4 | } 5 | -------------------------------------------------------------------------------- /rdfa/src/test/resources/rdfa-testsuite/rdfa1.1/html4/0219.sparql: -------------------------------------------------------------------------------- 1 | ASK WHERE { 2 | ?s ("Foo") . 3 | } 4 | -------------------------------------------------------------------------------- /rdfa/src/test/resources/rdfa-testsuite/rdfa1.1/html5/0175.sparql: -------------------------------------------------------------------------------- 1 | ASK WHERE { 2 | ?a "Gregg Kellogg" . 3 | FILTER isBlank(?a) 4 | } 5 | -------------------------------------------------------------------------------- /rdfa/src/test/resources/rdfa-testsuite/rdfa1.1/html5/0219.sparql: -------------------------------------------------------------------------------- 1 | ASK WHERE { 2 | ?s ("Foo") . 3 | } 4 | -------------------------------------------------------------------------------- /rdfa/src/test/resources/rdfa-testsuite/rdfa1.1/svg/0219.sparql: -------------------------------------------------------------------------------- 1 | ASK WHERE { 2 | ?s ("Foo") . 3 | } 4 | -------------------------------------------------------------------------------- /rdfa/src/test/resources/rdfa-testsuite/rdfa1.1/xhtml1/0175.sparql: -------------------------------------------------------------------------------- 1 | ASK WHERE { 2 | ?a "Gregg Kellogg" . 3 | FILTER isBlank(?a) 4 | } 5 | -------------------------------------------------------------------------------- /rdfa/src/test/resources/rdfa-testsuite/rdfa1.1/xhtml1/0219.sparql: -------------------------------------------------------------------------------- 1 | ASK WHERE { 2 | ?s ("Foo") . 3 | } 4 | -------------------------------------------------------------------------------- /rdfa/src/test/resources/rdfa-testsuite/rdfa1.1/xml/0175.sparql: -------------------------------------------------------------------------------- 1 | ASK WHERE { 2 | ?a "Gregg Kellogg" . 3 | FILTER isBlank(?a) 4 | } 5 | -------------------------------------------------------------------------------- /rdfa/testng.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semarglproject/semargl/HEAD/rdfa/testng.xml --------------------------------------------------------------------------------