From ca3ccb22456893e6d5bf133109db6eedd952a1d7 Mon Sep 17 00:00:00 2001 From: Gregg Kellogg Date: Wed, 20 May 2020 16:41:05 -0700 Subject: [PATCH 1/8] Update URLs to use HTTPS, where possible. --- CONTRIBUTING.md | 8 +- README.md | 84 ++--- UNLICENSE | 2 +- lib/rdf/tabular.rb | 6 +- lib/rdf/tabular/csvw.rb | 590 ++++++++++++++++++++++++++++++------ lib/rdf/tabular/format.rb | 2 +- lib/rdf/tabular/metadata.rb | 2 +- lib/rdf/tabular/reader.rb | 6 +- lib/rdf/tabular/uax35.rb | 2 +- rdf-tabular.gemspec | 2 +- script/tc | 10 +- spec/reader_spec.rb | 4 +- 12 files changed, 564 insertions(+), 154 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ed8f2cc..026fe27 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,7 +6,7 @@ Community contributions are essential for keeping Ruby RDF great. We want to kee This repository uses [Git Flow](https://github.com/nvie/gitflow) to manage development and release activity. All submissions _must_ be on a feature branch based on the _develop_ branch to ease staging and integration. -* create or respond to an issue on the [Github Repository](http://github.com/ruby-rdf/rdf-tabular/issues) +* create or respond to an issue on the [Github Repository](https://github.com/ruby-rdf/rdf-tabular/issues) * Fork and clone the repo: `git clone git@github.com:your-username/rdf-tabular.git` * Install bundle: @@ -30,7 +30,7 @@ This repository uses [Git Flow](https://github.com/nvie/gitflow) to manage devel of thumb, additions larger than about 15 lines of code), we need an explicit [public domain dedication][PDD] on record from you. -[YARD]: http://yardoc.org/ -[YARD-GS]: http://rubydoc.info/docs/yard/file/docs/GettingStarted.md -[PDD]: http://lists.w3.org/Archives/Public/public-rdf-ruby/2010May/0013.html +[YARD]: https://yardoc.org/ +[YARD-GS]: https://rubydoc.info/docs/yard/file/docs/GettingStarted.md +[PDD]: https://lists.w3.org/Archives/Public/public-rdf-ruby/2010May/0013.html [pr]: https://github.com/ruby-rdf/rdf-tabular/compare/ diff --git a/README.md b/README.md index a494e83..a928801 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ [CSV][] reader for [RDF.rb][] and fully JSON serializer. -[![Gem Version](https://badge.fury.io/rb/rdf-tabular.png)](http://badge.fury.io/rb/rdf-tabular) -[![Build Status](https://secure.travis-ci.org/ruby-rdf/rdf-tabular.png?branch=master)](http://travis-ci.org/ruby-rdf/rdf-tabular) +[![Gem Version](https://badge.fury.io/rb/rdf-tabular.png)](https://badge.fury.io/rb/rdf-tabular) +[![Build Status](https://secure.travis-ci.org/ruby-rdf/rdf-tabular.png?branch=master)](https://travis-ci.org/ruby-rdf/rdf-tabular) [![Coverage Status](https://coveralls.io/repos/ruby-rdf/rdf-tabular/badge.svg)](https://coveralls.io/r/ruby-rdf/rdf-tabular) [![Dependency Status](https://gemnasium.com/ruby-rdf/rdf-tabular.png)](https://gemnasium.com/ruby-rdf/rdf-tabular) @@ -11,8 +11,8 @@ RDF::Tabular parses CSV or other Tabular Data into [RDF][] and JSON using the [W3C CSVW][] specifications, currently undergoing development. -* Parses [number patterns](http://www.unicode.org/reports/tr35/tr35-39/tr35-numbers.html#Number_Patterns) from [UAX35][] -* Parses [date formats](http://www.unicode.org/reports/tr35/tr35-39/tr35-dates.html#Contents) from [UAX35][] +* Parses [number patterns](https://www.unicode.org/reports/tr35/tr35-39/tr35-numbers.html#Number_Patterns) from [UAX35][] +* Parses [date formats](https://www.unicode.org/reports/tr35/tr35-39/tr35-dates.html#Contents) from [UAX35][] * Returns detailed errors and warnings using optional `Logger`. ## Installation @@ -31,7 +31,7 @@ Metadata can then provide datatypes for the columns, express foreign key relatio "@context": "http://www.w3.org/ns/csvw", "url": "doap.csv", "tableSchema": { - "aboutUrl": "http://rubygems.org/gems/rdf-tabular", + "aboutUrl": "https://rubygems.org/gems/rdf-tabular", "propertyUrl": "http://usefulinc.com/ns/doap#{_name}", "null": "", "columns": [ @@ -74,29 +74,29 @@ This results in the following Turtle: @prefix rdf: . @prefix xsd: . - a doap:Project, + a doap:Project, , ; dc:title "RDF::Tabular"; dc:creator ; dc:date "2015-01-05"^^xsd:date; dc:description "RDF::Tabular processes tabular data with metadata creating RDF or JSON output."@en; - dc:isPartOf ; + dc:isPartOf ; doap:blog ; - doap:bug-database ; + doap:bug-database ; doap:category , ; doap:created "2015-01-05"^^xsd:date; doap:description "RDF::Tabular processes tabular data with metadata creating RDF or JSON output."@en; doap:developer ; doap:documenter ; - doap:download-page ; + doap:download-page ; doap:homepage ; doap:implements , , , ; - doap:license ; + doap:license ; doap:mailing-list ; doap:maintainer ; doap:name "RDF::Tabular"; @@ -110,22 +110,22 @@ This results in the following Turtle: a csvw:Table; csvw:row [ a csvw:Row; - csvw:describes ; + csvw:describes ; csvw:rownum 1; csvw:url ], [ a csvw:Row; - csvw:describes ; + csvw:describes ; csvw:rownum 2; csvw:url ], [ a csvw:Row; - csvw:describes ; + csvw:describes ; csvw:rownum 3; csvw:url ], [ a csvw:Row; - csvw:describes ; + csvw:describes ; csvw:rownum 4; csvw:url ]; @@ -144,7 +144,7 @@ This results in the following Turtle: prov:hadRole csvw:tabularMetadata ]; prov:startedAtTime "2015-04-11T12:33:25Z"^^xsd:dateTime; - prov:wasAssociatedWith + prov:wasAssociatedWith ] ] . @@ -162,20 +162,20 @@ It can also generate JSON output (not complete JSON-LD, but compatible with it), "rownum": 1, "describes": [ { - "@id": "http://rubygems.org/gems/rdf-tabular", + "@id": "https://rubygems.org/gems/rdf-tabular", "http://usefulinc.com/ns/doap#name": "RDF::Tabular", "@type": "http://usefulinc.com/ns/doap#Project", "http://usefulinc.com/ns/doap#homepage": "http://ruby-rdf.github.com/rdf-tabular", - "http://usefulinc.com/ns/doap#license": "http://creativecommons.org/licenses/publicdomain/", + "http://usefulinc.com/ns/doap#license": "http://creativecommons.org/publicdomain/zero/1.0/", "http://usefulinc.com/ns/doap#shortdesc": "Tabular Data RDF Reader and JSON serializer.", "http://usefulinc.com/ns/doap#description": "RDF::Tabular processes tabular data with metadata creating RDF or JSON output.", "http://usefulinc.com/ns/doap#created": "2015-01-05", "http://usefulinc.com/ns/doap#programming-language": "Ruby", "http://usefulinc.com/ns/doap#implements": "http://www.w3.org/TR/tabular-data-model/", "http://usefulinc.com/ns/doap#category": "http://dbpedia.org/resource/Resource_Description_Framework", - "http://usefulinc.com/ns/doap#download-page": "http://rubygems.org/gems/rdf-tabular", + "http://usefulinc.com/ns/doap#download-page": "https://rubygems.org/gems/rdf-tabular", "http://usefulinc.com/ns/doap#mailing-list": "http://lists.w3.org/Archives/Public/public-rdf-ruby/", - "http://usefulinc.com/ns/doap#bug-database": "http://github.com/ruby-rdf/rdf-tabular/issues", + "http://usefulinc.com/ns/doap#bug-database": "https://github.com/ruby-rdf/rdf-tabular/issues", "http://usefulinc.com/ns/doap#blog": "http://greggkellogg.net/", "http://usefulinc.com/ns/doap#developer": "http://greggkellogg.net/foaf#me", "http://usefulinc.com/ns/doap#maintainer": "http://greggkellogg.net/foaf#me", @@ -185,7 +185,7 @@ It can also generate JSON output (not complete JSON-LD, but compatible with it), "dc:description": "RDF::Tabular processes tabular data with metadata creating RDF or JSON output.", "dc:date": "2015-01-05", "dc:creator": "http://greggkellogg.net/foaf#me", - "dc:isPartOf": "http://rubygems.org/gems/rdf" + "dc:isPartOf": "https://rubygems.org/gems/rdf" } ] }, @@ -194,7 +194,7 @@ It can also generate JSON output (not complete JSON-LD, but compatible with it), "rownum": 2, "describes": [ { - "@id": "http://rubygems.org/gems/rdf-tabular", + "@id": "https://rubygems.org/gems/rdf-tabular", "@type": "http://www.w3.org/ns/earl#TestSubject", "http://usefulinc.com/ns/doap#implements": "http://www.w3.org/TR/tabular-metadata/", "http://usefulinc.com/ns/doap#category": "http://dbpedia.org/resource/Ruby_(programming_language)" @@ -206,7 +206,7 @@ It can also generate JSON output (not complete JSON-LD, but compatible with it), "rownum": 3, "describes": [ { - "@id": "http://rubygems.org/gems/rdf-tabular", + "@id": "https://rubygems.org/gems/rdf-tabular", "@type": "http://www.w3.org/ns/earl#Software", "http://usefulinc.com/ns/doap#implements": "http://www.w3.org/TR/csv2rdf/" } @@ -217,7 +217,7 @@ It can also generate JSON output (not complete JSON-LD, but compatible with it), "rownum": 4, "describes": [ { - "@id": "http://rubygems.org/gems/rdf-tabular", + "@id": "https://rubygems.org/gems/rdf-tabular", "http://usefulinc.com/ns/doap#implements": "http://www.w3.org/TR/csv2json/" } ] @@ -229,8 +229,8 @@ It can also generate JSON output (not complete JSON-LD, but compatible with it), ## Tutorials -* [CSV on the Web](http://www.greggkellogg.net/2015/08/csv-on-the-web-presentation/) -* [Implementing CSV on the Web](http://greggkellogg.net/2015/04/implementing-csv-on-the-web/) +* [CSV on the Web](https://www.greggkellogg.net/2015/08/csv-on-the-web-presentation/) +* [Implementing CSV on the Web](https://greggkellogg.net/2015/04/implementing-csv-on-the-web/) ## Command Line When the `linkeddata` gem is installed, RDF.rb includes a `rdf` executable which acts as a wrapper to perform a number of different @@ -257,7 +257,7 @@ RDF::Tabular also acts as a normal RDF reader, using the standard RDF.rb Reader graph = RDF::Graph.load("etc/doap.csv", minimal: true) ## Documentation -Full documentation available on [RubyDoc](http://rubydoc.info/gems/rdf-tabular/file/README.md) +Full documentation available on [RubyDoc](https://rubydoc.info/gems/rdf-tabular/file/README.md) ### Principal Classes * {RDF::Tabular} @@ -267,21 +267,21 @@ Full documentation available on [RubyDoc](http://rubydoc.info/gems/rdf-tabular/f * {RDF::Tabular::Reader} ## Dependencies -* [Ruby](http://ruby-lang.org/) (>= 2.2.2) -* [RDF.rb](http://rubygems.org/gems/rdf) (~> 3.0) +* [Ruby](https://ruby-lang.org/) (>= 2.2.2) +* [RDF.rb](https://rubygems.org/gems/rdf) (~> 3.0) * [JSON](https://rubygems.org/gems/json) (>= 2.0) ## Installation -The recommended installation method is via [RubyGems](http://rubygems.org/). +The recommended installation method is via [RubyGems](https://rubygems.org/). To install the latest official release of the `RDF::Tabular` gem, do: % [sudo] gem install rdf-tabular ## Mailing List -* +* ## Author -* [Gregg Kellogg](http://github.com/gkellogg) - +* [Gregg Kellogg](https://github.com/gkellogg) - ## Contributing * Do your best to adhere to the existing coding conventions and idioms. @@ -296,15 +296,15 @@ License ------- This is free and unencumbered public domain software. For more information, -see or the accompanying {file:UNLICENSE} file. - -[Ruby]: http://ruby-lang.org/ -[RDF]: http://www.w3.org/RDF/ -[YARD]: http://yardoc.org/ -[YARD-GS]: http://rubydoc.info/docs/yard/file/docs/GettingStarted.md -[PDD]: http://lists.w3.org/Archives/Public/public-rdf-ruby/2010May/0013.html -[RDF.rb]: http://rubygems.org/gems/rdf -[CSV]: http://en.wikipedia.org/wiki/Comma-separated_values -[W3C CSVW]: http://www.w3.org/2013/csvw/wiki/Main_Page +see or the accompanying {file:UNLICENSE} file. + +[Ruby]: https://ruby-lang.org/ +[RDF]: https://www.w3.org/RDF/ +[YARD]: https://yardoc.org/ +[YARD-GS]: https://rubydoc.info/docs/yard/file/docs/GettingStarted.md +[PDD]: https://lists.w3.org/Archives/Public/public-rdf-ruby/2010May/0013.html +[RDF.rb]: https://rubygems.org/gems/rdf +[CSV]: https://en.wikipedia.org/wiki/Comma-separated_values +[W3C CSVW]: https://www.w3.org/2013/csvw/wiki/Main_Page [URI template]: https://tools.ietf.org/html/rfc6570 -[UAX35]: http://www.unicode.org/reports/tr15/ +[UAX35]: https://www.unicode.org/reports/tr15/ diff --git a/UNLICENSE b/UNLICENSE index 68a49da..efb9808 100644 --- a/UNLICENSE +++ b/UNLICENSE @@ -21,4 +21,4 @@ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -For more information, please refer to +For more information, please refer to diff --git a/lib/rdf/tabular.rb b/lib/rdf/tabular.rb index dbee5f4..44fc619 100644 --- a/lib/rdf/tabular.rb +++ b/lib/rdf/tabular.rb @@ -1,14 +1,14 @@ $:.unshift(File.expand_path("..", __FILE__)) -require 'rdf' # @see http://rubygems.org/gems/rdf +require 'rdf' # @see https://rubygems.org/gems/rdf require 'csv' module RDF ## # **`RDF::Tabular`** is a Tabular/CSV extension for RDF.rb. # - # @see http://w3c.github.io/csvw/ + # @see https://w3c.github.io/csvw/ # - # @author [Gregg Kellogg](http://greggkellogg.net/) + # @author [Gregg Kellogg](https://greggkellogg.net/) module Tabular require 'rdf/tabular/format' autoload :Column, 'rdf/tabular/metadata' diff --git a/lib/rdf/tabular/csvw.rb b/lib/rdf/tabular/csvw.rb index 35d0fbe..c674770 100644 --- a/lib/rdf/tabular/csvw.rb +++ b/lib/rdf/tabular/csvw.rb @@ -5,548 +5,958 @@ module RDF::Tabular # @!parse # # Vocabulary for + # # + # # CSVW Namespace Vocabulary Terms + # # + # # This document describes the RDFS vocabulary description used in the Metadata Vocabulary for Tabular Data [[tabular-metadata]] along with the default JSON-LD Context. + # # @version https://github.com/w3c/csvw/commit/94898e9f0b073aa09b3334ded2eb5ab3b87b37a9 + # # @see http://www.w3.org/TR/tabular-metadata # class CSVW < RDF::StrictVocabulary + # # A Cell represents a cell at the intersection of a Row and a Column within a Table. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Cell + # + # # A Column represents a vertical arrangement of Cells within a Table. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Column + # + # # Describes facets of a datatype. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Datatype + # + # # A Dialect Description provides hints to parsers about how to parse a linked file. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Dialect + # + # # The class of table/text directions. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Direction + # + # # Describes relationships between Columns in one or more Tables. + # # @return [RDF::Vocabulary::Term] + # attr_reader :ForeignKey + # + # # If the datatype is a numeric type, the format property indicates the expected format for that number. Its value must be either a single string or an object with one or more properties. + # # @return [RDF::Vocabulary::Term] + # attr_reader :NumericFormat + # + # # A Row represents a horizontal arrangement of cells within a Table. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Row + # + # # A Schema is a definition of a tabular format that may be common to multiple tables. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Schema + # + # # An annotated table is a table that is annotated with additional metadata. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Table + # + # # A Group of Tables comprises a set of Annotated Tables and a set of annotations that relate to those Tables. + # # @return [RDF::Vocabulary::Term] + # attr_reader :TableGroup + # + # # An object property that identifies a referenced table and a set of referenced columns within that table. + # # @return [RDF::Vocabulary::Term] + # attr_reader :TableReference + # + # # A Transformation Definition is a definition of how tabular data can be transformed into another format. + # # @return [RDF::Vocabulary::Term] + # attr_reader :Transformation + # + # # A URI template property that MAY be used to indicate what a cell contains information about. + # # @return [RDF::Vocabulary::Term] + # attr_reader :aboutUrl + # + # # An atomic property that contains a single string: a term defined in the default context representing a built-in datatype URL, as listed above. + # # @return [RDF::Vocabulary::Term] + # attr_reader :base + # + # # An array property of column descriptions as described in section 5.6 Columns. + # # @return [RDF::Vocabulary::Term] + # attr_reader :column + # + # # A column reference property that holds either a single reference to a column description object within this schema, or an array of references. These form the referencing columns for the foreign key definition. + # # @return [RDF::Vocabulary::Term] + # attr_reader :columnReference + # + # # An atomic property that sets the comment prefix flag to the single provided value, which MUST be a string. + # # @return [RDF::Vocabulary::Term] + # attr_reader :commentPrefix + # + # # An object property that contains either a single string that is the main datatype of the values of the cell or a datatype description object. If the value of this property is a string, it MUST be one of the built-in datatypes defined in section 5.11.1 Built-in Datatypes or an absolute URL; if it is an object then it describes a more specialised datatype. + # # @return [RDF::Vocabulary::Term] + # attr_reader :datatype + # + # # A string whose value is used to represent a decimal point within the number. + # # @return [RDF::Vocabulary::Term] + # attr_reader :decimalChar + # + # # An atomic property holding a single string that is used to create a default value for the cell in cases where the original string value is an empty string. + # # @return [RDF::Vocabulary::Term] + # attr_reader :default + # + # # An atomic property that sets the delimiter flag to the single provided value, which MUST be a string. + # # @return [RDF::Vocabulary::Term] + # attr_reader :delimiter + # + # # From IANA describes: The relationship A 'describes' B asserts that resource A provides a description of resource B. There are no constraints on the format or representation of either A or B, neither are there any further constraints on either resource. + # # @return [RDF::Vocabulary::Term] + # attr_reader :describes + # + # # An object property that provides a single dialect description. If provided, dialect provides hints to processors about how to parse the referenced files to create tabular data models for the tables in the group. + # # @return [RDF::Vocabulary::Term] + # attr_reader :dialect + # + # # A boolean atomic property that, if `true`, sets the escape character flag to `"`. + # # @return [RDF::Vocabulary::Term] + # attr_reader :doubleQuote + # + # # An atomic property that sets the encoding flag to the single provided string value, which MUST be a defined in [[encoding]]. The default is "utf-8". + # # @return [RDF::Vocabulary::Term] + # attr_reader :encoding + # + # # For a Table: a list of foreign keys on the table. For a Schema: an array property of foreign key definitions that define how the values from specified columns within this table link to rows within this table or other tables. + # # @return [RDF::Vocabulary::Term] + # attr_reader :foreignKey + # + # # An atomic property that contains either a single string or an object that defines the format of a value of this type, used when parsing a string value as described in Parsing Cells in [[tabular-data-model]]. + # # @return [RDF::Vocabulary::Term] + # attr_reader :format + # + # # A string whose value is used to group digits within the number. + # # @return [RDF::Vocabulary::Term] + # attr_reader :groupChar + # + # # A boolean atomic property that, if `true`, sets the header row count flag to `1`, and if `false` to `0`, unless headerRowCount is provided, in which case the value provided for the header property is ignored. + # # @return [RDF::Vocabulary::Term] + # attr_reader :header + # + # # An numeric atomic property that sets the header row count flag to the single provided value, which must be a non-negative integer. + # # @return [RDF::Vocabulary::Term] + # attr_reader :headerRowCount + # + # # An atomic property giving a single string language code as defined by [[BCP47]]. + # # @return [RDF::Vocabulary::Term] + # attr_reader :lang + # + # # The exact length of the value of the cell. + # # @return [RDF::Vocabulary::Term] + # attr_reader :length + # + # # An atomic property that sets the line terminators flag to either an array containing the single provided string value, or the provided array. + # # @return [RDF::Vocabulary::Term] + # attr_reader :lineTerminators + # + # # An atomic property that contains a single number that is the maximum valid value (exclusive). + # # @return [RDF::Vocabulary::Term] + # attr_reader :maxExclusive + # + # # An atomic property that contains a single number that is the maximum valid value (inclusive). + # # @return [RDF::Vocabulary::Term] + # attr_reader :maxInclusive + # + # # A numeric atomic property that contains a single integer that is the maximum length of the value. + # # @return [RDF::Vocabulary::Term] + # attr_reader :maxLength + # + # # An atomic property that contains a single number that is the minimum valid value (exclusive). + # # @return [RDF::Vocabulary::Term] + # attr_reader :minExclusive + # + # # An atomic property that contains a single number that is the minimum valid value (inclusive). + # # @return [RDF::Vocabulary::Term] + # attr_reader :minInclusive + # + # # An atomic property that contains a single integer that is the minimum length of the value. + # # @return [RDF::Vocabulary::Term] + # attr_reader :minLength + # + # # An atomic property that gives a single canonical name for the column. The value of this property becomes the name annotation for the described column. + # # @return [RDF::Vocabulary::Term] + # attr_reader :name + # + # # An array property that provides an array of objects representing arbitrary annotations on the annotated tabular data model. + # # @return [RDF::Vocabulary::Term] + # attr_reader :note + # + # # An atomic property giving the string or strings used for null values within the data. If the string value of the cell is equal to any one of these values, the cell value is `null`. + # # @return [RDF::Vocabulary::Term] + # attr_reader :null + # + # # A boolean atomic property taking a single value which indicates whether a list that is the value of the cell is ordered (if `true`) or unordered (if `false`). + # # @return [RDF::Vocabulary::Term] + # attr_reader :ordered + # + # # A regular expression string, in the syntax and interpreted as defined by [[ECMASCRIPT]]. + # # @return [RDF::Vocabulary::Term] + # attr_reader :pattern + # + # # For Schema: A column reference property that holds either a single reference to a column description object or an array of references. For Row: a possibly empty list of cells whose values together provide a unique identifier for this row. This is similar to the name of a column. + # # @return [RDF::Vocabulary::Term] + # attr_reader :primaryKey + # + # # An URI template property that MAY be used to create a URI for a property if the table is mapped to another format. + # # @return [RDF::Vocabulary::Term] + # attr_reader :propertyUrl + # + # # An atomic property that sets the quote character flag to the single provided value, which must be a string or `null`. + # # @return [RDF::Vocabulary::Term] + # attr_reader :quoteChar + # + # # An object property that identifies a **referenced table** and a set of **referenced columns** within that table. + # # @return [RDF::Vocabulary::Term] + # attr_reader :reference + # + # # A possibly empty list of pairs of a foreign key and a row in a table within the same group of tables. + # # @return [RDF::Vocabulary::Term] + # attr_reader :referencedRow + # + # # A boolean atomic property taking a single value which indicates whether the cell must have a non-null value. The default is `false`. + # # @return [RDF::Vocabulary::Term] + # attr_reader :required + # + # # A link property holding a URL that is the identifier for a specific table that is being referenced. + # # @return [RDF::Vocabulary::Term] + # attr_reader :resource + # + # # Relates a Table to each Row output. + # # @return [RDF::Vocabulary::Term] + # attr_reader :row + # + # # A column reference property that holds either a single reference to a column description object or an array of references. + # # @return [RDF::Vocabulary::Term] + # attr_reader :rowTitle + # + # # The position of the row amongst the rows of the Annotated Tabl, starting from 1 + # # @return [RDF::Vocabulary::Term] + # attr_reader :rownum + # + # # A link property holding a URL that is the identifier for a schema that is being referenced. + # # @return [RDF::Vocabulary::Term] + # attr_reader :schemaReference + # + # # A link property giving the single URL for the format that is used by the script or template. + # # @return [RDF::Vocabulary::Term] + # attr_reader :scriptFormat + # + # # An atomic property that MUST have a single string value that is the character used to separate items in the string value of the cell. + # # @return [RDF::Vocabulary::Term] + # attr_reader :separator + # + # # An boolean atomic property that sets the `skip blank rows` flag to the single provided boolean value. + # # @return [RDF::Vocabulary::Term] + # attr_reader :skipBlankRows + # + # # An numeric atomic property that sets the `skip columns` flag to the single provided numeric value, which MUST be a non-negative integer. + # # @return [RDF::Vocabulary::Term] + # attr_reader :skipColumns + # + # # A boolean atomic property that, if `true`, sets the trim flag to "start". If `false`, to `false`. + # # @return [RDF::Vocabulary::Term] + # attr_reader :skipInitialSpace + # + # # An numeric atomic property that sets the `skip rows` flag to the single provided numeric value, which MUST be a non-negative integer. + # # @return [RDF::Vocabulary::Term] + # attr_reader :skipRows + # + # # A single string atomic property that provides, if specified, the format to which the tabular data should be transformed prior to the transformation using the script or template. + # # @return [RDF::Vocabulary::Term] + # attr_reader :source + # + # # A boolean atomic property. If `true`, suppresses any output that would be generated when converting a table or cells within a column. + # # @return [RDF::Vocabulary::Term] + # attr_reader :suppressOutput + # + # # Relates an Table group to annotated tables. + # # @return [RDF::Vocabulary::Term] + # attr_reader :table + # + # # One of `rtl`, `ltr` or `auto`. Indicates whether the tables in the group should be displayed with the first column on the right, on the left, or based on the first character in the table that has a specific direction. + # # @return [RDF::Vocabulary::Term] + # attr_reader :tableDirection + # + # # An object property that provides a single schema description as described in section 5.5 Schemas, used as the default for all the tables in the group + # # @return [RDF::Vocabulary::Term] + # attr_reader :tableSchema + # + # # A link property giving the single URL for the format that will be created through the transformation. + # # @return [RDF::Vocabulary::Term] + # attr_reader :targetFormat + # + # # An atomic property that must have a single value that is one of `rtl` or `ltr` (the default). + # # @return [RDF::Vocabulary::Term] + # attr_reader :textDirection + # + # # For a Transformation A natural language property that describes the format that will be generated from the transformation. For a Column: A natural language property that provides possible alternative names for the column. + # # @return [RDF::Vocabulary::Term] + # attr_reader :title + # + # # An array property of transformation definitions that provide mechanisms to transform the tabular data into other formats. + # # @return [RDF::Vocabulary::Term] + # attr_reader :transformations + # + # # An atomic property that, if the boolean `true`, sets the trim flag to `true` and if the boolean `false` to `false`. If the value provided is a string, sets the trim flag to the provided value, which must be one of "true", "false", "start" or "end". + # # @return [RDF::Vocabulary::Term] + # attr_reader :trim + # + # # For a Table: This link property gives the single URL of the CSV file that the table is held in, relative to the location of the metadata document. For a Transformation: A link property giving the single URL of the file that the script or template is held in, relative to the location of the metadata document. + # # @return [RDF::Vocabulary::Term] + # attr_reader :url + # + # # An URI template property that is used to map the values of cells into URLs. + # # @return [RDF::Vocabulary::Term] + # attr_reader :valueUrl + # + # # A boolean atomic property taking a single value which indicates whether the column is a virtual column not present in the original source + # # @return [RDF::Vocabulary::Term] + # attr_reader :virtual + # + # # A literal containing JSON. + # # @return [RDF::Vocabulary::Term] + # attr_reader :JSON + # + # # + # # @return [RDF::Vocabulary::Term] + # attr_reader :uriTemplate + # + # # Indicates whether the tables in the group should be displayed based on the first character in the table that has a specific direction. + # # @return [RDF::Vocabulary::Term] + # attr_reader :auto + # + # # Describes the role of a CSV file in the tabular data mapping. + # # @return [RDF::Vocabulary::Term] + # attr_reader :csvEncodedTabularData + # + # # For `textDirection`, indicates that the direction is inherited from the `tableDirection` annotation of the `table`. + # # @return [RDF::Vocabulary::Term] + # attr_reader :inherit + # + # # Indicates whether the tables in the group should be displayed with the first column on the right. + # # @return [RDF::Vocabulary::Term] + # attr_reader :ltr + # + # # Indicates whether the tables in the group should be displayed with the first column on the left. + # # @return [RDF::Vocabulary::Term] + # attr_reader :rtl + # + # # Describes the role of a Metadata file in the tabular data mapping. + # # @return [RDF::Vocabulary::Term] + # attr_reader :tabularMetadata + # # end - class CSVW < RDF::StrictVocabulary("http://www.w3.org/ns/csvw#") + CSVW = Class.new(RDF::StrictVocabulary("http://www.w3.org/ns/csvw#")) do # Ontology definition ontology :"http://www.w3.org/ns/csvw#", - :"dc:date" => %(2017-05-23).freeze, - :"dc:description" => %(This document describes the RDFS vocabulary description used in the Metadata Vocabulary for Tabular Data [[tabular-metadata]] along with the default JSON-LD Context.).freeze, - :"dc:title" => %(CSVW Namespace Vocabulary Terms).freeze, - :"owl:imports" => %(http://www.w3.org/ns/prov).freeze, - :"owl:versionInfo" => %(https://github.com/w3c/csvw/commit/94898e9f0b073aa09b3334ded2eb5ab3b87b37a9).freeze, - :"rdfs:seeAlso" => %(http://www.w3.org/TR/tabular-metadata).freeze, + "dc:date": "2017-05-23".freeze, + "dc:description": "This document describes the RDFS vocabulary description used in the Metadata Vocabulary for Tabular Data [[tabular-metadata]] along with the default JSON-LD Context.".freeze, + "dc:title": "CSVW Namespace Vocabulary Terms".freeze, + "owl:imports": "http://www.w3.org/ns/prov".freeze, + "owl:versionInfo": "https://github.com/w3c/csvw/commit/94898e9f0b073aa09b3334ded2eb5ab3b87b37a9".freeze, + "rdfs:seeAlso": "http://www.w3.org/TR/tabular-metadata".freeze, type: "owl:Ontology".freeze # Class definitions term :Cell, comment: %(A Cell represents a cell at the intersection of a Row and a Column within a Table.).freeze, + isDefinedBy: "csvw:".freeze, label: "Cell".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdfs:Class".freeze term :Column, comment: %(A Column represents a vertical arrangement of Cells within a Table.).freeze, + isDefinedBy: "csvw:".freeze, label: "Column Description".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdfs:Class".freeze term :Datatype, comment: %(Describes facets of a datatype.).freeze, + isDefinedBy: "csvw:".freeze, label: "Datatype".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdfs:Class".freeze term :Dialect, comment: %(A Dialect Description provides hints to parsers about how to parse a linked file.).freeze, + isDefinedBy: "csvw:".freeze, label: "Dialect Description".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdfs:Class".freeze term :Direction, comment: %(The class of table/text directions.).freeze, + isDefinedBy: "csvw:".freeze, label: "Direction".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdfs:Class".freeze term :ForeignKey, comment: %(Describes relationships between Columns in one or more Tables.).freeze, + isDefinedBy: "csvw:".freeze, label: "Foreign Key Definition".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdfs:Class".freeze term :NumericFormat, comment: %(If the datatype is a numeric type, the format property indicates the expected format for that number. Its value must be either a single string or an object with one or more properties.).freeze, + isDefinedBy: "csvw:".freeze, label: "Numeric Format".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdfs:Class".freeze term :Row, comment: %(A Row represents a horizontal arrangement of cells within a Table.).freeze, + isDefinedBy: "csvw:".freeze, label: "Row".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdfs:Class".freeze term :Schema, comment: %(A Schema is a definition of a tabular format that may be common to multiple tables.).freeze, + isDefinedBy: "csvw:".freeze, label: "Schema".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdfs:Class".freeze term :Table, comment: %(An annotated table is a table that is annotated with additional metadata.).freeze, + isDefinedBy: "csvw:".freeze, label: "Annotated Table".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdfs:Class".freeze term :TableGroup, comment: %(A Group of Tables comprises a set of Annotated Tables and a set of annotations that relate to those Tables.).freeze, + isDefinedBy: "csvw:".freeze, label: "Group of Tables".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdfs:Class".freeze term :TableReference, comment: %(An object property that identifies a referenced table and a set of referenced columns within that table.).freeze, + isDefinedBy: "csvw:".freeze, label: "Table Reference".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdfs:Class".freeze term :Transformation, comment: %(A Transformation Definition is a definition of how tabular data can be transformed into another format.).freeze, + isDefinedBy: "csvw:".freeze, label: "Transformation Definition".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdfs:Class".freeze # Property definitions property :aboutUrl, comment: %(A URI template property that MAY be used to indicate what a cell contains information about.).freeze, + domain: term( + unionOf: list("csvw:TableGroup".freeze, "csvw:Table".freeze, "csvw:Schema".freeze, "csvw:Column".freeze) + ), + isDefinedBy: "csvw:".freeze, label: "about URL".freeze, range: "csvw:uriTemplate".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :base, comment: %(An atomic property that contains a single string: a term defined in the default context representing a built-in datatype URL, as listed above.).freeze, domain: "csvw:Datatype".freeze, + isDefinedBy: "csvw:".freeze, label: "base".freeze, range: "xsd:string".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :column, comment: %(An array property of column descriptions as described in section 5.6 Columns.).freeze, domain: "csvw:Schema".freeze, + isDefinedBy: "csvw:".freeze, label: "column".freeze, range: "csvw:Column".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :columnReference, comment: %(A column reference property that holds either a single reference to a column description object within this schema, or an array of references. These form the referencing columns for the foreign key definition.).freeze, + domain: term( + unionOf: list("csvw:ForeignKey".freeze, "csvw:TableReference".freeze) + ), + isDefinedBy: "csvw:".freeze, label: "column reference".freeze, range: "xsd:string".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :commentPrefix, comment: %(An atomic property that sets the comment prefix flag to the single provided value, which MUST be a string.).freeze, domain: "csvw:Dialect".freeze, + isDefinedBy: "csvw:".freeze, label: "comment prefix".freeze, range: "xsd:string".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :datatype, comment: %(An object property that contains either a single string that is the main datatype of the values of the cell or a datatype description object. If the value of this property is a string, it MUST be one of the built-in datatypes defined in section 5.11.1 Built-in Datatypes or an absolute URL; if it is an object then it describes a more specialised datatype.).freeze, + domain: term( + unionOf: list("csvw:TableGroup".freeze, "csvw:Table".freeze, "csvw:Schema".freeze, "csvw:Column".freeze) + ), + isDefinedBy: "csvw:".freeze, label: "datatype".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, + range: term( + unionOf: list("csvw:Datatype".freeze, "xsd:string".freeze) + ), type: "rdf:Property".freeze property :decimalChar, comment: %(A string whose value is used to represent a decimal point within the number.).freeze, domain: "csvw:NumericFormat".freeze, + isDefinedBy: "csvw:".freeze, label: "decimal character".freeze, range: "xsd:string".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :default, comment: %(An atomic property holding a single string that is used to create a default value for the cell in cases where the original string value is an empty string.).freeze, + domain: term( + unionOf: list("csvw:TableGroup".freeze, "csvw:Table".freeze, "csvw:Schema".freeze, "csvw:Column".freeze) + ), + isDefinedBy: "csvw:".freeze, label: "default".freeze, range: "xsd:string".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :delimiter, comment: %(An atomic property that sets the delimiter flag to the single provided value, which MUST be a string.).freeze, domain: "csvw:Dialect".freeze, + isDefinedBy: "csvw:".freeze, label: "delimiter".freeze, range: "xsd:string".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :describes, comment: %(From IANA describes: The relationship A 'describes' B asserts that resource A provides a description of resource B. There are no constraints on the format or representation of either A or B, neither are there any further constraints on either resource.).freeze, domain: "csvw:Row".freeze, + isDefinedBy: "csvw:".freeze, label: "describes".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :dialect, comment: %(An object property that provides a single dialect description. If provided, dialect provides hints to processors about how to parse the referenced files to create tabular data models for the tables in the group.).freeze, + domain: term( + unionOf: list("csvw:TableGroup".freeze, "csvw:Table".freeze) + ), + isDefinedBy: "csvw:".freeze, label: "dialect".freeze, range: "csvw:Dialect".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :doubleQuote, comment: %(A boolean atomic property that, if `true`, sets the escape character flag to `"`.).freeze, domain: "csvw:Dialect".freeze, + isDefinedBy: "csvw:".freeze, label: "double quote".freeze, range: "xsd:boolean".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :encoding, comment: %(An atomic property that sets the encoding flag to the single provided string value, which MUST be a defined in [[encoding]]. The default is "utf-8".).freeze, domain: "csvw:Dialect".freeze, + isDefinedBy: "csvw:".freeze, label: "encoding".freeze, range: "xsd:string".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :foreignKey, comment: %(For a Table: a list of foreign keys on the table. For a Schema: an array property of foreign key definitions that define how the values from specified columns within this table link to rows within this table or other tables.).freeze, + domain: term( + unionOf: list("csvw:Table".freeze, "csvw:Schema".freeze) + ), + isDefinedBy: "csvw:".freeze, label: "foreign key".freeze, range: "csvw:ForeignKey".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :format, comment: %(An atomic property that contains either a single string or an object that defines the format of a value of this type, used when parsing a string value as described in Parsing Cells in [[tabular-data-model]].).freeze, domain: "csvw:Datatype".freeze, + isDefinedBy: "csvw:".freeze, label: "format".freeze, range: "xsd:string".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :groupChar, comment: %(A string whose value is used to group digits within the number.).freeze, domain: "csvw:NumericFormat".freeze, + isDefinedBy: "csvw:".freeze, label: "group character".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, + range: term( + unionOf: list("csvw:NumericFormat".freeze, "xsd:string".freeze) + ), type: "rdf:Property".freeze property :header, comment: %(A boolean atomic property that, if `true`, sets the header row count flag to `1`, and if `false` to `0`, unless headerRowCount is provided, in which case the value provided for the header property is ignored.).freeze, domain: "csvw:Dialect".freeze, + isDefinedBy: "csvw:".freeze, label: "header".freeze, range: "xsd:boolean".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :headerRowCount, comment: %(An numeric atomic property that sets the header row count flag to the single provided value, which must be a non-negative integer.).freeze, domain: "csvw:Dialect".freeze, + isDefinedBy: "csvw:".freeze, label: "header row count".freeze, range: "xsd:nonNegativeInteger".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :lang, comment: %(An atomic property giving a single string language code as defined by [[BCP47]].).freeze, + domain: term( + unionOf: list("csvw:TableGroup".freeze, "csvw:Table".freeze, "csvw:Schema".freeze, "csvw:Column".freeze) + ), + isDefinedBy: "csvw:".freeze, label: "language".freeze, range: "xsd:string".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :length, comment: %(The exact length of the value of the cell.).freeze, domain: "csvw:Datatype".freeze, + isDefinedBy: "csvw:".freeze, label: "length".freeze, range: "xsd:nonNegativeInteger".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :lineTerminators, comment: %(An atomic property that sets the line terminators flag to either an array containing the single provided string value, or the provided array.).freeze, domain: "csvw:Dialect".freeze, + isDefinedBy: "csvw:".freeze, label: "line terminators".freeze, range: "xsd:string".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :maxExclusive, comment: %(An atomic property that contains a single number that is the maximum valid value \(exclusive\).).freeze, domain: "csvw:Datatype".freeze, + isDefinedBy: "csvw:".freeze, label: "max exclusive".freeze, range: "xsd:integer".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :maxInclusive, comment: %(An atomic property that contains a single number that is the maximum valid value \(inclusive\).).freeze, domain: "csvw:Datatype".freeze, + isDefinedBy: "csvw:".freeze, label: "max inclusive".freeze, range: "xsd:integer".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :maxLength, comment: %(A numeric atomic property that contains a single integer that is the maximum length of the value.).freeze, domain: "csvw:Datatype".freeze, + isDefinedBy: "csvw:".freeze, label: "max length".freeze, range: "xsd:nonNegativeInteger".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :minExclusive, comment: %(An atomic property that contains a single number that is the minimum valid value \(exclusive\).).freeze, domain: "csvw:Datatype".freeze, + isDefinedBy: "csvw:".freeze, label: "min exclusive".freeze, range: "xsd:integer".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :minInclusive, comment: %(An atomic property that contains a single number that is the minimum valid value \(inclusive\).).freeze, domain: "csvw:Datatype".freeze, + isDefinedBy: "csvw:".freeze, label: "min inclusive".freeze, range: "xsd:integer".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :minLength, comment: %(An atomic property that contains a single integer that is the minimum length of the value.).freeze, domain: "csvw:Datatype".freeze, + isDefinedBy: "csvw:".freeze, label: "min length".freeze, range: "xsd:nonNegativeInteger".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :name, comment: %(An atomic property that gives a single canonical name for the column. The value of this property becomes the name annotation for the described column.).freeze, domain: "csvw:Column".freeze, + isDefinedBy: "csvw:".freeze, label: "name".freeze, range: "xsd:string".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :note, comment: %(An array property that provides an array of objects representing arbitrary annotations on the annotated tabular data model.).freeze, + domain: term( + unionOf: list("csvw:TableGroup".freeze, "csvw:Table".freeze) + ), + isDefinedBy: "csvw:".freeze, label: "note".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :null, comment: %(An atomic property giving the string or strings used for null values within the data. If the string value of the cell is equal to any one of these values, the cell value is `null`.).freeze, + domain: term( + unionOf: list("csvw:TableGroup".freeze, "csvw:Table".freeze, "csvw:Schema".freeze, "csvw:Column".freeze) + ), + isDefinedBy: "csvw:".freeze, label: "null".freeze, range: "xsd:string".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :ordered, comment: %(A boolean atomic property taking a single value which indicates whether a list that is the value of the cell is ordered \(if `true`\) or unordered \(if `false`\).).freeze, + domain: term( + unionOf: list("csvw:TableGroup".freeze, "csvw:Table".freeze, "csvw:Schema".freeze, "csvw:Column".freeze) + ), + isDefinedBy: "csvw:".freeze, label: "ordered".freeze, range: "xsd:boolean".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :pattern, comment: %(A regular expression string, in the syntax and interpreted as defined by [[ECMASCRIPT]].).freeze, domain: "csvw:NumericFormat".freeze, + isDefinedBy: "csvw:".freeze, label: "pattern".freeze, range: "xsd:string".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :primaryKey, comment: %(For Schema: A column reference property that holds either a single reference to a column description object or an array of references. For Row: a possibly empty list of cells whose values together provide a unique identifier for this row. This is similar to the name of a column.).freeze, + domain: term( + unionOf: list("csvw:Schema".freeze, "csvw:Row".freeze) + ), + isDefinedBy: "csvw:".freeze, label: "primary key".freeze, range: "xsd:string".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :propertyUrl, comment: %(An URI template property that MAY be used to create a URI for a property if the table is mapped to another format. ).freeze, + domain: term( + unionOf: list("csvw:TableGroup".freeze, "csvw:Table".freeze, "csvw:Schema".freeze, "csvw:Column".freeze) + ), + isDefinedBy: "csvw:".freeze, label: "property URL".freeze, range: "csvw:uriTemplate".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :quoteChar, comment: %(An atomic property that sets the quote character flag to the single provided value, which must be a string or `null`.).freeze, domain: "csvw:Dialect".freeze, + isDefinedBy: "csvw:".freeze, label: "quote char".freeze, range: "xsd:string".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :reference, comment: %(An object property that identifies a **referenced table** and a set of **referenced columns** within that table.).freeze, domain: "csvw:ForeignKey".freeze, + isDefinedBy: "csvw:".freeze, label: "reference".freeze, range: "csvw:TableReference".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :referencedRow, comment: %(A possibly empty list of pairs of a foreign key and a row in a table within the same group of tables.).freeze, domain: "csvw:Row".freeze, + isDefinedBy: "csvw:".freeze, label: "referenced rows".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :required, comment: %(A boolean atomic property taking a single value which indicates whether the cell must have a non-null value. The default is `false`. ).freeze, + domain: term( + unionOf: list("csvw:TableGroup".freeze, "csvw:Table".freeze, "csvw:Schema".freeze, "csvw:Column".freeze) + ), + isDefinedBy: "csvw:".freeze, label: "required".freeze, range: "xsd:boolean".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :resource, comment: %(A link property holding a URL that is the identifier for a specific table that is being referenced.).freeze, domain: "csvw:TableReference".freeze, + isDefinedBy: "csvw:".freeze, label: "resource".freeze, range: "xsd:anyURI".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :row, comment: %(Relates a Table to each Row output.).freeze, domain: "csvw:Table".freeze, + isDefinedBy: "csvw:".freeze, label: "row".freeze, range: "csvw:Row".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, subPropertyOf: "rdfs:member".freeze, type: "rdf:Property".freeze property :rowTitle, comment: %(A column reference property that holds either a single reference to a column description object or an array of references.).freeze, domain: "csvw:Schema".freeze, + isDefinedBy: "csvw:".freeze, label: "row titles".freeze, range: "xsd:string".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :rownum, comment: %(The position of the row amongst the rows of the Annotated Tabl, starting from 1).freeze, + isDefinedBy: "csvw:".freeze, label: "row number".freeze, range: "xsd:integer".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :schemaReference, comment: %(A link property holding a URL that is the identifier for a schema that is being referenced.).freeze, domain: "csvw:TableReference".freeze, + isDefinedBy: "csvw:".freeze, label: "schema reference".freeze, range: "xsd:anyURI".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :scriptFormat, comment: %(A link property giving the single URL for the format that is used by the script or template.).freeze, domain: "csvw:Transformation".freeze, + isDefinedBy: "csvw:".freeze, label: "script format".freeze, range: "xsd:anyURI".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :separator, comment: %(An atomic property that MUST have a single string value that is the character used to separate items in the string value of the cell.).freeze, + domain: term( + unionOf: list("csvw:TableGroup".freeze, "csvw:Table".freeze, "csvw:Schema".freeze, "csvw:Column".freeze) + ), + isDefinedBy: "csvw:".freeze, label: "separator".freeze, range: "xsd:string".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :skipBlankRows, comment: %(An boolean atomic property that sets the `skip blank rows` flag to the single provided boolean value.).freeze, domain: "csvw:Dialect".freeze, + isDefinedBy: "csvw:".freeze, label: "skip blank rows".freeze, range: "xsd:boolean".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :skipColumns, comment: %(An numeric atomic property that sets the `skip columns` flag to the single provided numeric value, which MUST be a non-negative integer.).freeze, domain: "csvw:Dialect".freeze, + isDefinedBy: "csvw:".freeze, label: "skip columns".freeze, range: "xsd:nonNegativeInteger".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :skipInitialSpace, comment: %(A boolean atomic property that, if `true`, sets the trim flag to "start". If `false`, to `false`.).freeze, domain: "csvw:Dialect".freeze, + isDefinedBy: "csvw:".freeze, label: "skip initial space".freeze, range: "xsd:boolean".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :skipRows, comment: %(An numeric atomic property that sets the `skip rows` flag to the single provided numeric value, which MUST be a non-negative integer.).freeze, domain: "csvw:Dialect".freeze, + isDefinedBy: "csvw:".freeze, label: "skip rows".freeze, range: "xsd:nonNegativeInteger".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :source, comment: %(A single string atomic property that provides, if specified, the format to which the tabular data should be transformed prior to the transformation using the script or template.).freeze, domain: "csvw:Transformation".freeze, + isDefinedBy: "csvw:".freeze, label: "source".freeze, range: "xsd:string".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :suppressOutput, comment: %(A boolean atomic property. If `true`, suppresses any output that would be generated when converting a table or cells within a column.).freeze, + domain: term( + unionOf: list("csvw:Table".freeze, "csvw:Column".freeze) + ), + isDefinedBy: "csvw:".freeze, label: "suppress output".freeze, range: "xsd:boolean".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :table, comment: %(Relates an Table group to annotated tables.).freeze, domain: "csvw:TableGroup".freeze, + isDefinedBy: "csvw:".freeze, label: "table".freeze, range: "csvw:Table".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, subPropertyOf: "rdfs:member".freeze, type: "rdf:Property".freeze property :tableDirection, comment: %(One of `rtl`, `ltr` or `auto`. Indicates whether the tables in the group should be displayed with the first column on the right, on the left, or based on the first character in the table that has a specific direction.).freeze, + domain: term( + unionOf: list("csvw:TableGroup".freeze, "csvw:Table".freeze) + ), + isDefinedBy: "csvw:".freeze, label: "table direction".freeze, range: "csvw:Direction".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :tableSchema, comment: %(An object property that provides a single schema description as described in section 5.5 Schemas, used as the default for all the tables in the group).freeze, + domain: term( + unionOf: list("csvw:TableGroup".freeze, "csvw:Table".freeze) + ), + isDefinedBy: "csvw:".freeze, label: "table schema".freeze, range: "csvw:Schema".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :targetFormat, comment: %(A link property giving the single URL for the format that will be created through the transformation.).freeze, domain: "csvw:Transformation".freeze, + isDefinedBy: "csvw:".freeze, label: "target format".freeze, range: "xsd:anyURI".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :textDirection, comment: %(An atomic property that must have a single value that is one of `rtl` or `ltr` \(the default\).).freeze, + domain: term( + unionOf: list("csvw:TableGroup".freeze, "csvw:Table".freeze, "csvw:Schema".freeze, "csvw:Column".freeze) + ), + isDefinedBy: "csvw:".freeze, label: "text direction".freeze, range: "csvw:Direction".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :title, comment: %(For a Transformation A natural language property that describes the format that will be generated from the transformation. For a Column: A natural language property that provides possible alternative names for the column.).freeze, + domain: term( + unionOf: list("csvw:Transformation".freeze, "csvw:Column".freeze, "csvw:Row".freeze) + ), + isDefinedBy: "csvw:".freeze, label: "title".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :transformations, comment: %(An array property of transformation definitions that provide mechanisms to transform the tabular data into other formats.).freeze, + domain: term( + unionOf: list("csvw:TableGroup".freeze, "csvw:Table".freeze, "csvw:Schema".freeze, "csvw:Column".freeze) + ), + isDefinedBy: "csvw:".freeze, label: "transformations".freeze, range: "csvw:Transformation".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :trim, comment: %(An atomic property that, if the boolean `true`, sets the trim flag to `true` and if the boolean `false` to `false`. If the value provided is a string, sets the trim flag to the provided value, which must be one of "true", "false", "start" or "end".).freeze, domain: "csvw:Dialect".freeze, + isDefinedBy: "csvw:".freeze, label: "trim".freeze, range: "xsd:boolean".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :url, comment: %(For a Table: This link property gives the single URL of the CSV file that the table is held in, relative to the location of the metadata document. For a Transformation: A link property giving the single URL of the file that the script or template is held in, relative to the location of the metadata document.).freeze, + domain: term( + unionOf: list("csvw:Table".freeze, "csvw:Transformation".freeze) + ), + isDefinedBy: "csvw:".freeze, label: "url".freeze, range: "xsd:anyURI".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :valueUrl, comment: %(An URI template property that is used to map the values of cells into URLs.).freeze, + domain: term( + unionOf: list("csvw:TableGroup".freeze, "csvw:Table".freeze, "csvw:Schema".freeze, "csvw:Column".freeze) + ), + isDefinedBy: "csvw:".freeze, label: "valueUrl".freeze, range: "csvw:uriTemplate".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze property :virtual, comment: %(A boolean atomic property taking a single value which indicates whether the column is a virtual column not present in the original source).freeze, domain: "csvw:Column".freeze, + isDefinedBy: "csvw:".freeze, label: "virtual".freeze, range: "xsd:boolean".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "rdf:Property".freeze # Datatype definitions term :JSON, comment: %(A literal containing JSON.).freeze, + isDefinedBy: "csvw:".freeze, label: "JSON".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, subClassOf: "xsd:string".freeze, type: "rdfs:Datatype".freeze term :uriTemplate, comment: %().freeze, + isDefinedBy: "csvw:".freeze, label: "uri template".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, subClassOf: "xsd:string".freeze, type: "rdfs:Datatype".freeze # Extra definitions term :auto, comment: %(Indicates whether the tables in the group should be displayed based on the first character in the table that has a specific direction.).freeze, + isDefinedBy: "csvw:".freeze, label: "auto".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "csvw:Direction".freeze term :csvEncodedTabularData, comment: %(Describes the role of a CSV file in the tabular data mapping.).freeze, + isDefinedBy: "csvw:".freeze, label: "CSV Encoded Tabular Data".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "prov:Role".freeze term :inherit, comment: %(For `textDirection`, indicates that the direction is inherited from the `tableDirection` annotation of the `table`.).freeze, + isDefinedBy: "csvw:".freeze, label: "inherit".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "csvw:Direction".freeze term :ltr, comment: %(Indicates whether the tables in the group should be displayed with the first column on the right.).freeze, + isDefinedBy: "csvw:".freeze, label: "left to right".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "csvw:Direction".freeze term :rtl, comment: %(Indicates whether the tables in the group should be displayed with the first column on the left.).freeze, + isDefinedBy: "csvw:".freeze, label: "right to left".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "csvw:Direction".freeze term :tabularMetadata, comment: %(Describes the role of a Metadata file in the tabular data mapping.).freeze, + isDefinedBy: "csvw:".freeze, label: "Tabular Metadata".freeze, - :"rdfs:isDefinedBy" => %(csvw:).freeze, type: "prov:Role".freeze end end diff --git a/lib/rdf/tabular/format.rb b/lib/rdf/tabular/format.rb index c826398..9d61e85 100644 --- a/lib/rdf/tabular/format.rb +++ b/lib/rdf/tabular/format.rb @@ -22,7 +22,7 @@ module RDF::Tabular # @example Obtaining serialization format file extension mappings # RDF::Format.file_extensions #=> {:csv => "text/csv"} # - # @see http://www.w3.org/TR/rdf-testcases/#ntriples + # @see https://www.w3.org/TR/rdf-testcases/#ntriples class Format < RDF::Format content_type 'text/csv;q=0.4', extensions: [:csv, :tsv], diff --git a/lib/rdf/tabular/metadata.rb b/lib/rdf/tabular/metadata.rb index cdd2a2e..3d6221a 100644 --- a/lib/rdf/tabular/metadata.rb +++ b/lib/rdf/tabular/metadata.rb @@ -16,7 +16,7 @@ # * Return Column-level annotations # * Return row iterator with column information # -# @author [Gregg Kellogg](http://greggkellogg.net/) +# @author [Gregg Kellogg](https://greggkellogg.net/) module RDF::Tabular class Metadata include RDF::Util::Logger diff --git a/lib/rdf/tabular/reader.rb b/lib/rdf/tabular/reader.rb index 2dd6c80..0009252 100644 --- a/lib/rdf/tabular/reader.rb +++ b/lib/rdf/tabular/reader.rb @@ -5,7 +5,7 @@ module RDF::Tabular ## # A Tabular Data to RDF parser in Ruby. # - # @author [Gregg Kellogg](http://greggkellogg.net/) + # @author [Gregg Kellogg](https://greggkellogg.net/) class Reader < RDF::Reader format Format include RDF::Util::Logger @@ -22,7 +22,7 @@ class Reader < RDF::Reader ## # Writer options - # @see http://www.rubydoc.info/github/ruby-rdf/rdf/RDF/Writer#options-class_method + # @see https://www.rubydoc.info/github/ruby-rdf/rdf/RDF/Writer#options-class_method def self.options super + [ RDF::CLI::Option.new( @@ -225,7 +225,7 @@ def each_statement(&block) activity = RDF::Node.new add_statement(0, table_group, RDF::Vocab::PROV.wasGeneratedBy, activity) add_statement(0, activity, RDF.type, RDF::Vocab::PROV.Activity) - add_statement(0, activity, RDF::Vocab::PROV.wasAssociatedWith, RDF::URI("http://rubygems.org/gems/rdf-tabular")) + add_statement(0, activity, RDF::Vocab::PROV.wasAssociatedWith, RDF::URI("https://rubygems.org/gems/rdf-tabular")) add_statement(0, activity, RDF::Vocab::PROV.startedAtTime, RDF::Literal::DateTime.new(start_time)) add_statement(0, activity, RDF::Vocab::PROV.endedAtTime, RDF::Literal::DateTime.new(Time.now)) diff --git a/lib/rdf/tabular/uax35.rb b/lib/rdf/tabular/uax35.rb index d835167..a62e81b 100644 --- a/lib/rdf/tabular/uax35.rb +++ b/lib/rdf/tabular/uax35.rb @@ -3,7 +3,7 @@ module RDF::Tabular ## # Utilities for parsing UAX35 dates and numbers. # - # @see http://www.unicode.org/reports/tr35 + # @see https://www.unicode.org/reports/tr35 module UAX35 ## diff --git a/rdf-tabular.gemspec b/rdf-tabular.gemspec index e6e8982..bbe0174 100755 --- a/rdf-tabular.gemspec +++ b/rdf-tabular.gemspec @@ -6,7 +6,7 @@ Gem::Specification.new do |gem| gem.date = File.mtime('VERSION').strftime('%Y-%m-%d') gem.name = "rdf-tabular" - gem.homepage = "http://github.com/ruby-rdf/rdf-tabular" + gem.homepage = "https://github.com/ruby-rdf/rdf-tabular" gem.license = 'Unlicense' gem.summary = "Tabular Data RDF Reader and JSON serializer." gem.description = "RDF::Tabular processes tabular data with metadata creating RDF or JSON output." diff --git a/script/tc b/script/tc index dbce5d7..e2a6906 100755 --- a/script/tc +++ b/script/tc @@ -9,22 +9,22 @@ require File.expand_path(File.join(File.dirname(__FILE__), "..", 'spec', 'spec_h require File.expand_path(File.join(File.dirname(__FILE__), "..", 'spec', 'suite_helper')) require 'getoptlong' -ASSERTOR = "http://greggkellogg.net/foaf#me" +ASSERTOR = "https://greggkellogg.net/foaf#me" RUN_TIME = Time.now def earl_preamble(options) options[:output].write File.read(File.expand_path("../../etc/doap.ttl", __FILE__)) options[:output].puts %( -<> foaf:primaryTopic ; +<> foaf:primaryTopic ; dc:issued "#{RUN_TIME.xmlschema}"^^xsd:dateTime ; foaf:maker <#{ASSERTOR}> . <#{ASSERTOR}> a foaf:Person, earl:Assertor; foaf:name "Gregg Kellogg"; foaf:title "Implementor"; - foaf:homepage . + foaf:homepage . - + doap:release . a doap:Version; @@ -130,7 +130,7 @@ def run_tc(t, **options) options[:output].puts %{ [ a earl:Assertion; earl:assertedBy <#{ASSERTOR}>; - earl:subject ; + earl:subject ; earl:test <#{RDF::URI(options[:manifest]).join(t.id)}>; earl:result [ a earl:TestResult; diff --git a/spec/reader_spec.rb b/spec/reader_spec.rb index 38b9d58..5180623 100644 --- a/spec/reader_spec.rb +++ b/spec/reader_spec.rb @@ -308,7 +308,7 @@ ASK WHERE { [ prov:wasGeneratedBy [ a prov:Activity; - prov:wasAssociatedWith ; + prov:wasAssociatedWith ; prov:startedAtTime ?start; prov:endedAtTime ?end; prov:qualifiedUsage [ @@ -331,7 +331,7 @@ ASK WHERE { [ prov:wasGeneratedBy [ a prov:Activity; - prov:wasAssociatedWith ; + prov:wasAssociatedWith ; prov:startedAtTime ?start; prov:endedAtTime ?end; prov:qualifiedUsage [ From 5dedc6fe35dd854df5c0ed3214a17adbdb8ca584 Mon Sep 17 00:00:00 2001 From: Gregg Kellogg Date: Thu, 28 May 2020 16:22:50 -0700 Subject: [PATCH 2/8] Change doap:license to https://unlicense.org/. --- etc/doap.csv | 2 +- etc/doap.csv-metadata.json | 2 +- etc/doap.ttl | 27 +- etc/earl.html | 1296 +++++++++++++-------------- etc/earl.jsonld | 1382 ++++++++++++++--------------- etc/earl.ttl | 1692 ++++++++++++++++++------------------ 6 files changed, 2201 insertions(+), 2200 deletions(-) diff --git a/etc/doap.csv b/etc/doap.csv index c26cded..5a8ca38 100644 --- a/etc/doap.csv +++ b/etc/doap.csv @@ -1,5 +1,5 @@ name,type,homepage,license,shortdesc,description,created,programming_language,implements,category,download_page,mailing_list,bug_database,blog,developer,maintainer,documenter,maker,dc_title,dc_description,dc_date,dc_creator,isPartOf -RDF::Tabular,http://usefulinc.com/ns/doap#Project,http://ruby-rdf.github.com/rdf-tabular,http://creativecommons.org/licenses/publicdomain/,Tabular Data RDF Reader and JSON serializer.,RDF::Tabular processes tabular data with metadata creating RDF or JSON output.,1/5/2015,Ruby,http://www.w3.org/TR/tabular-data-model/,http://dbpedia.org/resource/Resource_Description_Framework,http://rubygems.org/gems/rdf-tabular,http://lists.w3.org/Archives/Public/public-rdf-ruby/,http://github.com/ruby-rdf/rdf-tabular/issues,http://greggkellogg.net/,http://greggkellogg.net/foaf#me,http://greggkellogg.net/foaf#me,http://greggkellogg.net/foaf#me,http://greggkellogg.net/foaf#me,RDF::Tabular,RDF::Tabular processes tabular data with metadata creating RDF or JSON output.,1/5/2015,http://greggkellogg.net/foaf#me,http://rubygems.org/gems/rdf +RDF::Tabular,http://usefulinc.com/ns/doap#Project,http://ruby-rdf.github.com/rdf-tabular,https://unlicense.org/,Tabular Data RDF Reader and JSON serializer.,RDF::Tabular processes tabular data with metadata creating RDF or JSON output.,1/5/2015,Ruby,http://www.w3.org/TR/tabular-data-model/,http://dbpedia.org/resource/Resource_Description_Framework,https://rubygems.org/gems/rdf-tabular,http://lists.w3.org/Archives/Public/public-rdf-ruby/,https://github.com/ruby-rdf/rdf-tabular/issues,http://greggkellogg.net/,http://greggkellogg.net/foaf#me,http://greggkellogg.net/foaf#me,http://greggkellogg.net/foaf#me,http://greggkellogg.net/foaf#me,RDF::Tabular,RDF::Tabular processes tabular data with metadata creating RDF or JSON output.,1/5/2015,http://greggkellogg.net/foaf#me,https://rubygems.org/gems/rdf ,http://www.w3.org/ns/earl#TestSubject,,,,,,,http://www.w3.org/TR/tabular-metadata/,http://dbpedia.org/resource/Ruby_(programming_language),,,,,,,,,,,,, ,http://www.w3.org/ns/earl#Software,,,,,,,http://www.w3.org/TR/csv2rdf/,,,,,,,,,,,,,, ,,,,,,,,http://www.w3.org/TR/csv2json/,,,,,,,,,,,,,, \ No newline at end of file diff --git a/etc/doap.csv-metadata.json b/etc/doap.csv-metadata.json index 931d67b..48d0270 100644 --- a/etc/doap.csv-metadata.json +++ b/etc/doap.csv-metadata.json @@ -2,7 +2,7 @@ "@context": "http://www.w3.org/ns/csvw", "url": "doap.csv", "tableSchema": { - "aboutUrl": "http://rubygems.org/gems/rdf-tabular", + "aboutUrl": "https://rubygems.org/gems/rdf-tabular", "propertyUrl": "http://usefulinc.com/ns/doap#{_name}", "null": "", "columns": [ diff --git a/etc/doap.ttl b/etc/doap.ttl index d4f408e..a585ae4 100644 --- a/etc/doap.ttl +++ b/etc/doap.ttl @@ -1,3 +1,4 @@ +@base . @prefix rdf: . @prefix rdfs: . @prefix dc: . @@ -6,10 +7,10 @@ @prefix doap: . @prefix xsd: . - a doap:Project, earl:TestSubject, earl:Software ; +<> a doap:Project, earl:TestSubject, earl:Software ; doap:name "RDF::Tabular" ; - doap:homepage ; - doap:license ; + doap:homepage ; + doap:license ; doap:shortdesc "Tabular Data RDF Reader and JSON serializer."@en ; doap:description "RDF::Tabular processes tabular data with metadata creating RDF or JSON output."@en ; doap:created "2015-01-05"^^xsd:date ; @@ -20,16 +21,16 @@ ; doap:category , ; - doap:download-page ; - doap:mailing-list ; - doap:bug-database ; - doap:blog ; - doap:developer ; - doap:maintainer ; - doap:documenter ; - foaf:maker ; + doap:download-page <> ; + doap:mailing-list ; + doap:bug-database ; + doap:blog ; + doap:developer ; + doap:maintainer ; + doap:documenter ; + foaf:maker ; dc:title "RDF::Tabular" ; dc:description "RDF::Tabular processes tabular data with metadata creating RDF or JSON output."@en ; dc:date "2015-01-05"^^xsd:date ; - dc:creator ; - dc:isPartOf . + dc:creator ; + dc:isPartOf . diff --git a/etc/earl.html b/etc/earl.html index c9021cd..c848b66 100644 --- a/etc/earl.html +++ b/etc/earl.html @@ -88,11 +88,11 @@

- - RDF::Tabular + + RDF::Tabular
-
+
Description
RDF::Tabular processes tabular data with metadata creating RDF or JSON output.
@@ -181,7 +181,7 @@

CSVW JSON tests

- + @@ -197,7 +197,7 @@

CSVW JSON tests

- + @@ -213,7 +213,7 @@

CSVW JSON tests

- + @@ -229,7 +229,7 @@

CSVW JSON tests

- + @@ -245,7 +245,7 @@

CSVW JSON tests

- + @@ -261,7 +261,7 @@

CSVW JSON tests

- + @@ -277,7 +277,7 @@

CSVW JSON tests

- + @@ -293,7 +293,7 @@

CSVW JSON tests

- + @@ -309,7 +309,7 @@

CSVW JSON tests

- + @@ -325,7 +325,7 @@

CSVW JSON tests

- + @@ -341,7 +341,7 @@

CSVW JSON tests

- + @@ -357,7 +357,7 @@

CSVW JSON tests

- + @@ -373,7 +373,7 @@

CSVW JSON tests

- + @@ -389,7 +389,7 @@

CSVW JSON tests

- + @@ -405,7 +405,7 @@

CSVW JSON tests

- + @@ -421,7 +421,7 @@

CSVW JSON tests

- + @@ -437,7 +437,7 @@

CSVW JSON tests

- + @@ -453,7 +453,7 @@

CSVW JSON tests

- + @@ -469,7 +469,7 @@

CSVW JSON tests

- + @@ -485,7 +485,7 @@

CSVW JSON tests

- + @@ -501,7 +501,7 @@

CSVW JSON tests

- + @@ -517,7 +517,7 @@

CSVW JSON tests

- + @@ -533,7 +533,7 @@

CSVW JSON tests

- + @@ -549,7 +549,7 @@

CSVW JSON tests

- + @@ -565,7 +565,7 @@

CSVW JSON tests

- + @@ -581,7 +581,7 @@

CSVW JSON tests

- + @@ -597,7 +597,7 @@

CSVW JSON tests

- + @@ -613,7 +613,7 @@

CSVW JSON tests

- + @@ -629,7 +629,7 @@

CSVW JSON tests

- + @@ -645,7 +645,7 @@

CSVW JSON tests

- + @@ -661,7 +661,7 @@

CSVW JSON tests

- + @@ -677,7 +677,7 @@

CSVW JSON tests

- + @@ -693,7 +693,7 @@

CSVW JSON tests

- + @@ -709,7 +709,7 @@

CSVW JSON tests

- + @@ -725,7 +725,7 @@

CSVW JSON tests

- + @@ -741,7 +741,7 @@

CSVW JSON tests

- + @@ -757,7 +757,7 @@

CSVW JSON tests

- + @@ -773,7 +773,7 @@

CSVW JSON tests

- + @@ -789,7 +789,7 @@

CSVW JSON tests

- + @@ -805,7 +805,7 @@

CSVW JSON tests

- + @@ -821,7 +821,7 @@

CSVW JSON tests

- + @@ -837,7 +837,7 @@

CSVW JSON tests

- + @@ -853,7 +853,7 @@

CSVW JSON tests

- + @@ -869,7 +869,7 @@

CSVW JSON tests

- + @@ -885,7 +885,7 @@

CSVW JSON tests

- + @@ -901,7 +901,7 @@

CSVW JSON tests

- + @@ -917,7 +917,7 @@

CSVW JSON tests

- + @@ -933,7 +933,7 @@

CSVW JSON tests

- + @@ -949,7 +949,7 @@

CSVW JSON tests

- + @@ -965,7 +965,7 @@

CSVW JSON tests

- + @@ -981,7 +981,7 @@

CSVW JSON tests

- + @@ -997,7 +997,7 @@

CSVW JSON tests

- + @@ -1013,7 +1013,7 @@

CSVW JSON tests

- + @@ -1029,7 +1029,7 @@

CSVW JSON tests

- + @@ -1045,7 +1045,7 @@

CSVW JSON tests

- + @@ -1061,7 +1061,7 @@

CSVW JSON tests

- + @@ -1077,7 +1077,7 @@

CSVW JSON tests

- + @@ -1093,7 +1093,7 @@

CSVW JSON tests

- + @@ -1109,7 +1109,7 @@

CSVW JSON tests

- + @@ -1125,7 +1125,7 @@

CSVW JSON tests

- + @@ -1141,7 +1141,7 @@

CSVW JSON tests

- + @@ -1157,7 +1157,7 @@

CSVW JSON tests

- + @@ -1173,7 +1173,7 @@

CSVW JSON tests

- + @@ -1189,7 +1189,7 @@

CSVW JSON tests

- + @@ -1205,7 +1205,7 @@

CSVW JSON tests

- + @@ -1221,7 +1221,7 @@

CSVW JSON tests

- + @@ -1237,7 +1237,7 @@

CSVW JSON tests

- + @@ -1253,7 +1253,7 @@

CSVW JSON tests

- + @@ -1269,7 +1269,7 @@

CSVW JSON tests

- + @@ -1285,7 +1285,7 @@

CSVW JSON tests

- + @@ -1301,7 +1301,7 @@

CSVW JSON tests

- + @@ -1317,7 +1317,7 @@

CSVW JSON tests

- + @@ -1333,7 +1333,7 @@

CSVW JSON tests

- + @@ -1349,7 +1349,7 @@

CSVW JSON tests

- + @@ -1365,7 +1365,7 @@

CSVW JSON tests

- + @@ -1381,7 +1381,7 @@

CSVW JSON tests

- + @@ -1397,7 +1397,7 @@

CSVW JSON tests

- + @@ -1413,7 +1413,7 @@

CSVW JSON tests

- + @@ -1429,7 +1429,7 @@

CSVW JSON tests

- + @@ -1445,7 +1445,7 @@

CSVW JSON tests

- + @@ -1461,7 +1461,7 @@

CSVW JSON tests

- + @@ -1477,7 +1477,7 @@

CSVW JSON tests

- + @@ -1493,7 +1493,7 @@

CSVW JSON tests

- + @@ -1509,7 +1509,7 @@

CSVW JSON tests

- + @@ -1525,7 +1525,7 @@

CSVW JSON tests

- + @@ -1541,7 +1541,7 @@

CSVW JSON tests

- + @@ -1557,7 +1557,7 @@

CSVW JSON tests

- + @@ -1573,7 +1573,7 @@

CSVW JSON tests

- + @@ -1589,7 +1589,7 @@

CSVW JSON tests

- + @@ -1605,7 +1605,7 @@

CSVW JSON tests

- + @@ -1621,7 +1621,7 @@

CSVW JSON tests

- + @@ -1637,7 +1637,7 @@

CSVW JSON tests

- + @@ -1653,7 +1653,7 @@

CSVW JSON tests

- + @@ -1669,7 +1669,7 @@

CSVW JSON tests

- + @@ -1685,7 +1685,7 @@

CSVW JSON tests

- + @@ -1701,7 +1701,7 @@

CSVW JSON tests

- + @@ -1717,7 +1717,7 @@

CSVW JSON tests

- + @@ -1733,7 +1733,7 @@

CSVW JSON tests

- + @@ -1749,7 +1749,7 @@

CSVW JSON tests

- + @@ -1765,7 +1765,7 @@

CSVW JSON tests

- + @@ -1781,7 +1781,7 @@

CSVW JSON tests

- + @@ -1797,7 +1797,7 @@

CSVW JSON tests

- + @@ -1813,7 +1813,7 @@

CSVW JSON tests

- + @@ -1829,7 +1829,7 @@

CSVW JSON tests

- + @@ -1845,7 +1845,7 @@

CSVW JSON tests

- + @@ -1861,7 +1861,7 @@

CSVW JSON tests

- + @@ -1877,7 +1877,7 @@

CSVW JSON tests

- + @@ -1893,7 +1893,7 @@

CSVW JSON tests

- + @@ -1909,7 +1909,7 @@

CSVW JSON tests

- + @@ -1925,7 +1925,7 @@

CSVW JSON tests

- + @@ -1941,7 +1941,7 @@

CSVW JSON tests

- + @@ -1957,7 +1957,7 @@

CSVW JSON tests

- + @@ -1973,7 +1973,7 @@

CSVW JSON tests

- + @@ -1989,7 +1989,7 @@

CSVW JSON tests

- + @@ -2005,7 +2005,7 @@

CSVW JSON tests

- + @@ -2021,7 +2021,7 @@

CSVW JSON tests

- + @@ -2037,7 +2037,7 @@

CSVW JSON tests

- + @@ -2053,7 +2053,7 @@

CSVW JSON tests

- + @@ -2069,7 +2069,7 @@

CSVW JSON tests

- + @@ -2085,7 +2085,7 @@

CSVW JSON tests

- + @@ -2101,7 +2101,7 @@

CSVW JSON tests

- + @@ -2117,7 +2117,7 @@

CSVW JSON tests

- + @@ -2133,7 +2133,7 @@

CSVW JSON tests

- + @@ -2149,7 +2149,7 @@

CSVW JSON tests

- + @@ -2165,7 +2165,7 @@

CSVW JSON tests

- + @@ -2181,7 +2181,7 @@

CSVW JSON tests

- + @@ -2197,7 +2197,7 @@

CSVW JSON tests

- + @@ -2213,7 +2213,7 @@

CSVW JSON tests

- + @@ -2229,7 +2229,7 @@

CSVW JSON tests

- + @@ -2245,7 +2245,7 @@

CSVW JSON tests

- + @@ -2261,7 +2261,7 @@

CSVW JSON tests

- + @@ -2277,7 +2277,7 @@

CSVW JSON tests

- + @@ -2293,7 +2293,7 @@

CSVW JSON tests

- + @@ -2309,7 +2309,7 @@

CSVW JSON tests

- + @@ -2325,7 +2325,7 @@

CSVW JSON tests

- + @@ -2341,7 +2341,7 @@

CSVW JSON tests

- + @@ -2357,7 +2357,7 @@

CSVW JSON tests

- + @@ -2373,7 +2373,7 @@

CSVW JSON tests

- + @@ -2389,7 +2389,7 @@

CSVW JSON tests

- + @@ -2405,7 +2405,7 @@

CSVW JSON tests

- + @@ -2421,7 +2421,7 @@

CSVW JSON tests

- + @@ -2437,7 +2437,7 @@

CSVW JSON tests

- + @@ -2453,7 +2453,7 @@

CSVW JSON tests

- + @@ -2469,7 +2469,7 @@

CSVW JSON tests

- + @@ -2485,7 +2485,7 @@

CSVW JSON tests

- + @@ -2501,7 +2501,7 @@

CSVW JSON tests

- + @@ -2517,7 +2517,7 @@

CSVW JSON tests

- + @@ -2533,7 +2533,7 @@

CSVW JSON tests

- + @@ -2549,7 +2549,7 @@

CSVW JSON tests

- + @@ -2565,7 +2565,7 @@

CSVW JSON tests

- + @@ -2581,7 +2581,7 @@

CSVW JSON tests

- + @@ -2597,7 +2597,7 @@

CSVW JSON tests

- + @@ -2613,7 +2613,7 @@

CSVW JSON tests

- + @@ -2629,7 +2629,7 @@

CSVW JSON tests

- + @@ -2645,7 +2645,7 @@

CSVW JSON tests

- + @@ -2661,7 +2661,7 @@

CSVW JSON tests

- + @@ -2677,7 +2677,7 @@

CSVW JSON tests

- + @@ -2693,7 +2693,7 @@

CSVW JSON tests

- + @@ -2709,7 +2709,7 @@

CSVW JSON tests

- + @@ -2725,7 +2725,7 @@

CSVW JSON tests

- + @@ -2741,7 +2741,7 @@

CSVW JSON tests

- + @@ -2757,7 +2757,7 @@

CSVW JSON tests

- + @@ -2773,7 +2773,7 @@

CSVW JSON tests

- + @@ -2789,7 +2789,7 @@

CSVW JSON tests

- + @@ -2805,7 +2805,7 @@

CSVW JSON tests

- + @@ -2821,7 +2821,7 @@

CSVW JSON tests

- + @@ -2837,7 +2837,7 @@

CSVW JSON tests

- + @@ -2853,7 +2853,7 @@

CSVW JSON tests

- + @@ -2869,7 +2869,7 @@

CSVW JSON tests

- + @@ -2885,7 +2885,7 @@

CSVW JSON tests

- + @@ -2901,7 +2901,7 @@

CSVW JSON tests

- + @@ -2917,7 +2917,7 @@

CSVW JSON tests

- + @@ -2933,7 +2933,7 @@

CSVW JSON tests

- + @@ -2949,7 +2949,7 @@

CSVW JSON tests

- + @@ -2965,7 +2965,7 @@

CSVW JSON tests

- + @@ -2981,7 +2981,7 @@

CSVW JSON tests

- + @@ -2997,7 +2997,7 @@

CSVW JSON tests

- + @@ -3013,7 +3013,7 @@

CSVW JSON tests

- + @@ -3029,7 +3029,7 @@

CSVW JSON tests

- + @@ -3045,7 +3045,7 @@

CSVW JSON tests

- + @@ -3061,7 +3061,7 @@

CSVW JSON tests

- + @@ -3077,7 +3077,7 @@

CSVW JSON tests

- + @@ -3093,7 +3093,7 @@

CSVW JSON tests

- + @@ -3109,7 +3109,7 @@

CSVW JSON tests

- + @@ -3125,7 +3125,7 @@

CSVW JSON tests

- + @@ -3141,7 +3141,7 @@

CSVW JSON tests

- + @@ -3157,7 +3157,7 @@

CSVW JSON tests

- + @@ -3173,7 +3173,7 @@

CSVW JSON tests

- + @@ -3189,7 +3189,7 @@

CSVW JSON tests

- + @@ -3205,7 +3205,7 @@

CSVW JSON tests

- + @@ -3221,7 +3221,7 @@

CSVW JSON tests

- + @@ -3237,7 +3237,7 @@

CSVW JSON tests

- + @@ -3253,7 +3253,7 @@

CSVW JSON tests

- + @@ -3269,7 +3269,7 @@

CSVW JSON tests

- + @@ -3285,7 +3285,7 @@

CSVW JSON tests

- + @@ -3301,7 +3301,7 @@

CSVW JSON tests

- + @@ -3317,7 +3317,7 @@

CSVW JSON tests

- + @@ -3333,7 +3333,7 @@

CSVW JSON tests

- + @@ -3349,7 +3349,7 @@

CSVW JSON tests

- + @@ -3365,7 +3365,7 @@

CSVW JSON tests

- + @@ -3381,7 +3381,7 @@

CSVW JSON tests

- + @@ -3419,7 +3419,7 @@

CSVW RDF Tests

- + @@ -3435,7 +3435,7 @@

CSVW RDF Tests

- + @@ -3451,7 +3451,7 @@

CSVW RDF Tests

- + @@ -3467,7 +3467,7 @@

CSVW RDF Tests

- + @@ -3483,7 +3483,7 @@

CSVW RDF Tests

- + @@ -3499,7 +3499,7 @@

CSVW RDF Tests

- + @@ -3515,7 +3515,7 @@

CSVW RDF Tests

- + @@ -3531,7 +3531,7 @@

CSVW RDF Tests

- + @@ -3547,7 +3547,7 @@

CSVW RDF Tests

- + @@ -3563,7 +3563,7 @@

CSVW RDF Tests

- + @@ -3579,7 +3579,7 @@

CSVW RDF Tests

- + @@ -3595,7 +3595,7 @@

CSVW RDF Tests

- + @@ -3611,7 +3611,7 @@

CSVW RDF Tests

- + @@ -3627,7 +3627,7 @@

CSVW RDF Tests

- + @@ -3643,7 +3643,7 @@

CSVW RDF Tests

- + @@ -3659,7 +3659,7 @@

CSVW RDF Tests

- + @@ -3675,7 +3675,7 @@

CSVW RDF Tests

- + @@ -3691,7 +3691,7 @@

CSVW RDF Tests

- + @@ -3707,7 +3707,7 @@

CSVW RDF Tests

- + @@ -3723,7 +3723,7 @@

CSVW RDF Tests

- + @@ -3739,7 +3739,7 @@

CSVW RDF Tests

- + @@ -3755,7 +3755,7 @@

CSVW RDF Tests

- + @@ -3771,7 +3771,7 @@

CSVW RDF Tests

- + @@ -3787,7 +3787,7 @@

CSVW RDF Tests

- + @@ -3803,7 +3803,7 @@

CSVW RDF Tests

- + @@ -3819,7 +3819,7 @@

CSVW RDF Tests

- + @@ -3835,7 +3835,7 @@

CSVW RDF Tests

- + @@ -3851,7 +3851,7 @@

CSVW RDF Tests

- + @@ -3867,7 +3867,7 @@

CSVW RDF Tests

- + @@ -3883,7 +3883,7 @@

CSVW RDF Tests

- + @@ -3899,7 +3899,7 @@

CSVW RDF Tests

- + @@ -3915,7 +3915,7 @@

CSVW RDF Tests

- + @@ -3931,7 +3931,7 @@

CSVW RDF Tests

- + @@ -3947,7 +3947,7 @@

CSVW RDF Tests

- + @@ -3963,7 +3963,7 @@

CSVW RDF Tests

- + @@ -3979,7 +3979,7 @@

CSVW RDF Tests

- + @@ -3995,7 +3995,7 @@

CSVW RDF Tests

- + @@ -4011,7 +4011,7 @@

CSVW RDF Tests

- + @@ -4027,7 +4027,7 @@

CSVW RDF Tests

- + @@ -4043,7 +4043,7 @@

CSVW RDF Tests

- + @@ -4059,7 +4059,7 @@

CSVW RDF Tests

- + @@ -4075,7 +4075,7 @@

CSVW RDF Tests

- + @@ -4091,7 +4091,7 @@

CSVW RDF Tests

- + @@ -4107,7 +4107,7 @@

CSVW RDF Tests

- + @@ -4123,7 +4123,7 @@

CSVW RDF Tests

- + @@ -4139,7 +4139,7 @@

CSVW RDF Tests

- + @@ -4155,7 +4155,7 @@

CSVW RDF Tests

- + @@ -4171,7 +4171,7 @@

CSVW RDF Tests

- + @@ -4187,7 +4187,7 @@

CSVW RDF Tests

- + @@ -4203,7 +4203,7 @@

CSVW RDF Tests

- + @@ -4219,7 +4219,7 @@

CSVW RDF Tests

- + @@ -4235,7 +4235,7 @@

CSVW RDF Tests

- + @@ -4251,7 +4251,7 @@

CSVW RDF Tests

- + @@ -4267,7 +4267,7 @@

CSVW RDF Tests

- + @@ -4283,7 +4283,7 @@

CSVW RDF Tests

- + @@ -4299,7 +4299,7 @@

CSVW RDF Tests

- + @@ -4315,7 +4315,7 @@

CSVW RDF Tests

- + @@ -4331,7 +4331,7 @@

CSVW RDF Tests

- + @@ -4347,7 +4347,7 @@

CSVW RDF Tests

- + @@ -4363,7 +4363,7 @@

CSVW RDF Tests

- + @@ -4379,7 +4379,7 @@

CSVW RDF Tests

- + @@ -4395,7 +4395,7 @@

CSVW RDF Tests

- + @@ -4411,7 +4411,7 @@

CSVW RDF Tests

- + @@ -4427,7 +4427,7 @@

CSVW RDF Tests

- + @@ -4443,7 +4443,7 @@

CSVW RDF Tests

- + @@ -4459,7 +4459,7 @@

CSVW RDF Tests

- + @@ -4475,7 +4475,7 @@

CSVW RDF Tests

- + @@ -4491,7 +4491,7 @@

CSVW RDF Tests

- + @@ -4507,7 +4507,7 @@

CSVW RDF Tests

- + @@ -4523,7 +4523,7 @@

CSVW RDF Tests

- + @@ -4539,7 +4539,7 @@

CSVW RDF Tests

- + @@ -4555,7 +4555,7 @@

CSVW RDF Tests

- + @@ -4571,7 +4571,7 @@

CSVW RDF Tests

- + @@ -4587,7 +4587,7 @@

CSVW RDF Tests

- + @@ -4603,7 +4603,7 @@

CSVW RDF Tests

- + @@ -4619,7 +4619,7 @@

CSVW RDF Tests

- + @@ -4635,7 +4635,7 @@

CSVW RDF Tests

- + @@ -4651,7 +4651,7 @@

CSVW RDF Tests

- + @@ -4667,7 +4667,7 @@

CSVW RDF Tests

- + @@ -4683,7 +4683,7 @@

CSVW RDF Tests

- + @@ -4699,7 +4699,7 @@

CSVW RDF Tests

- + @@ -4715,7 +4715,7 @@

CSVW RDF Tests

- + @@ -4731,7 +4731,7 @@

CSVW RDF Tests

- + @@ -4747,7 +4747,7 @@

CSVW RDF Tests

- + @@ -4763,7 +4763,7 @@

CSVW RDF Tests

- + @@ -4779,7 +4779,7 @@

CSVW RDF Tests

- + @@ -4795,7 +4795,7 @@

CSVW RDF Tests

- + @@ -4811,7 +4811,7 @@

CSVW RDF Tests

- + @@ -4827,7 +4827,7 @@

CSVW RDF Tests

- + @@ -4843,7 +4843,7 @@

CSVW RDF Tests

- + @@ -4859,7 +4859,7 @@

CSVW RDF Tests

- + @@ -4875,7 +4875,7 @@

CSVW RDF Tests

- + @@ -4891,7 +4891,7 @@

CSVW RDF Tests

- + @@ -4907,7 +4907,7 @@

CSVW RDF Tests

- + @@ -4923,7 +4923,7 @@

CSVW RDF Tests

- + @@ -4939,7 +4939,7 @@

CSVW RDF Tests

- + @@ -4955,7 +4955,7 @@

CSVW RDF Tests

- + @@ -4971,7 +4971,7 @@

CSVW RDF Tests

- + @@ -4987,7 +4987,7 @@

CSVW RDF Tests

- + @@ -5003,7 +5003,7 @@

CSVW RDF Tests

- + @@ -5019,7 +5019,7 @@

CSVW RDF Tests

- + @@ -5035,7 +5035,7 @@

CSVW RDF Tests

- + @@ -5051,7 +5051,7 @@

CSVW RDF Tests

- + @@ -5067,7 +5067,7 @@

CSVW RDF Tests

- + @@ -5083,7 +5083,7 @@

CSVW RDF Tests

- + @@ -5099,7 +5099,7 @@

CSVW RDF Tests

- + @@ -5115,7 +5115,7 @@

CSVW RDF Tests

- + @@ -5131,7 +5131,7 @@

CSVW RDF Tests

- + @@ -5147,7 +5147,7 @@

CSVW RDF Tests

- + @@ -5163,7 +5163,7 @@

CSVW RDF Tests

- + @@ -5179,7 +5179,7 @@

CSVW RDF Tests

- + @@ -5195,7 +5195,7 @@

CSVW RDF Tests

- + @@ -5211,7 +5211,7 @@

CSVW RDF Tests

- + @@ -5227,7 +5227,7 @@

CSVW RDF Tests

- + @@ -5243,7 +5243,7 @@

CSVW RDF Tests

- + @@ -5259,7 +5259,7 @@

CSVW RDF Tests

- + @@ -5275,7 +5275,7 @@

CSVW RDF Tests

- + @@ -5291,7 +5291,7 @@

CSVW RDF Tests

- + @@ -5307,7 +5307,7 @@

CSVW RDF Tests

- + @@ -5323,7 +5323,7 @@

CSVW RDF Tests

- + @@ -5339,7 +5339,7 @@

CSVW RDF Tests

- + @@ -5355,7 +5355,7 @@

CSVW RDF Tests

- + @@ -5371,7 +5371,7 @@

CSVW RDF Tests

- + @@ -5387,7 +5387,7 @@

CSVW RDF Tests

- + @@ -5403,7 +5403,7 @@

CSVW RDF Tests

- + @@ -5419,7 +5419,7 @@

CSVW RDF Tests

- + @@ -5435,7 +5435,7 @@

CSVW RDF Tests

- + @@ -5451,7 +5451,7 @@

CSVW RDF Tests

- + @@ -5467,7 +5467,7 @@

CSVW RDF Tests

- + @@ -5483,7 +5483,7 @@

CSVW RDF Tests

- + @@ -5499,7 +5499,7 @@

CSVW RDF Tests

- + @@ -5515,7 +5515,7 @@

CSVW RDF Tests

- + @@ -5531,7 +5531,7 @@

CSVW RDF Tests

- + @@ -5547,7 +5547,7 @@

CSVW RDF Tests

- + @@ -5563,7 +5563,7 @@

CSVW RDF Tests

- + @@ -5579,7 +5579,7 @@

CSVW RDF Tests

- + @@ -5595,7 +5595,7 @@

CSVW RDF Tests

- + @@ -5611,7 +5611,7 @@

CSVW RDF Tests

- + @@ -5627,7 +5627,7 @@

CSVW RDF Tests

- + @@ -5643,7 +5643,7 @@

CSVW RDF Tests

- + @@ -5659,7 +5659,7 @@

CSVW RDF Tests

- + @@ -5675,7 +5675,7 @@

CSVW RDF Tests

- + @@ -5691,7 +5691,7 @@

CSVW RDF Tests

- + @@ -5707,7 +5707,7 @@

CSVW RDF Tests

- + @@ -5723,7 +5723,7 @@

CSVW RDF Tests

- + @@ -5739,7 +5739,7 @@

CSVW RDF Tests

- + @@ -5755,7 +5755,7 @@

CSVW RDF Tests

- + @@ -5771,7 +5771,7 @@

CSVW RDF Tests

- + @@ -5787,7 +5787,7 @@

CSVW RDF Tests

- + @@ -5803,7 +5803,7 @@

CSVW RDF Tests

- + @@ -5819,7 +5819,7 @@

CSVW RDF Tests

- + @@ -5835,7 +5835,7 @@

CSVW RDF Tests

- + @@ -5851,7 +5851,7 @@

CSVW RDF Tests

- + @@ -5867,7 +5867,7 @@

CSVW RDF Tests

- + @@ -5883,7 +5883,7 @@

CSVW RDF Tests

- + @@ -5899,7 +5899,7 @@

CSVW RDF Tests

- + @@ -5915,7 +5915,7 @@

CSVW RDF Tests

- + @@ -5931,7 +5931,7 @@

CSVW RDF Tests

- + @@ -5947,7 +5947,7 @@

CSVW RDF Tests

- + @@ -5963,7 +5963,7 @@

CSVW RDF Tests

- + @@ -5979,7 +5979,7 @@

CSVW RDF Tests

- + @@ -5995,7 +5995,7 @@

CSVW RDF Tests

- + @@ -6011,7 +6011,7 @@

CSVW RDF Tests

- + @@ -6027,7 +6027,7 @@

CSVW RDF Tests

- + @@ -6043,7 +6043,7 @@

CSVW RDF Tests

- + @@ -6059,7 +6059,7 @@

CSVW RDF Tests

- + @@ -6075,7 +6075,7 @@

CSVW RDF Tests

- + @@ -6091,7 +6091,7 @@

CSVW RDF Tests

- + @@ -6107,7 +6107,7 @@

CSVW RDF Tests

- + @@ -6123,7 +6123,7 @@

CSVW RDF Tests

- + @@ -6139,7 +6139,7 @@

CSVW RDF Tests

- + @@ -6155,7 +6155,7 @@

CSVW RDF Tests

- + @@ -6171,7 +6171,7 @@

CSVW RDF Tests

- + @@ -6187,7 +6187,7 @@

CSVW RDF Tests

- + @@ -6203,7 +6203,7 @@

CSVW RDF Tests

- + @@ -6219,7 +6219,7 @@

CSVW RDF Tests

- + @@ -6235,7 +6235,7 @@

CSVW RDF Tests

- + @@ -6251,7 +6251,7 @@

CSVW RDF Tests

- + @@ -6267,7 +6267,7 @@

CSVW RDF Tests

- + @@ -6283,7 +6283,7 @@

CSVW RDF Tests

- + @@ -6299,7 +6299,7 @@

CSVW RDF Tests

- + @@ -6315,7 +6315,7 @@

CSVW RDF Tests

- + @@ -6331,7 +6331,7 @@

CSVW RDF Tests

- + @@ -6347,7 +6347,7 @@

CSVW RDF Tests

- + @@ -6363,7 +6363,7 @@

CSVW RDF Tests

- + @@ -6379,7 +6379,7 @@

CSVW RDF Tests

- + @@ -6395,7 +6395,7 @@

CSVW RDF Tests

- + @@ -6411,7 +6411,7 @@

CSVW RDF Tests

- + @@ -6427,7 +6427,7 @@

CSVW RDF Tests

- + @@ -6443,7 +6443,7 @@

CSVW RDF Tests

- + @@ -6459,7 +6459,7 @@

CSVW RDF Tests

- + @@ -6475,7 +6475,7 @@

CSVW RDF Tests

- + @@ -6491,7 +6491,7 @@

CSVW RDF Tests

- + @@ -6507,7 +6507,7 @@

CSVW RDF Tests

- + @@ -6523,7 +6523,7 @@

CSVW RDF Tests

- + @@ -6539,7 +6539,7 @@

CSVW RDF Tests

- + @@ -6555,7 +6555,7 @@

CSVW RDF Tests

- + @@ -6571,7 +6571,7 @@

CSVW RDF Tests

- + @@ -6587,7 +6587,7 @@

CSVW RDF Tests

- + @@ -6603,7 +6603,7 @@

CSVW RDF Tests

- + @@ -6619,7 +6619,7 @@

CSVW RDF Tests

- + @@ -6657,7 +6657,7 @@

CSVW Validation Tests

- + @@ -6673,7 +6673,7 @@

CSVW Validation Tests

- + @@ -6689,7 +6689,7 @@

CSVW Validation Tests

- + @@ -6705,7 +6705,7 @@

CSVW Validation Tests

- + @@ -6721,7 +6721,7 @@

CSVW Validation Tests

- + @@ -6737,7 +6737,7 @@

CSVW Validation Tests

- + @@ -6753,7 +6753,7 @@

CSVW Validation Tests

- + @@ -6769,7 +6769,7 @@

CSVW Validation Tests

- + @@ -6785,7 +6785,7 @@

CSVW Validation Tests

- + @@ -6801,7 +6801,7 @@

CSVW Validation Tests

- + @@ -6817,7 +6817,7 @@

CSVW Validation Tests

- + @@ -6833,7 +6833,7 @@

CSVW Validation Tests

- + @@ -6849,7 +6849,7 @@

CSVW Validation Tests

- + @@ -6865,7 +6865,7 @@

CSVW Validation Tests

- + @@ -6881,7 +6881,7 @@

CSVW Validation Tests

- + @@ -6897,7 +6897,7 @@

CSVW Validation Tests

- + @@ -6913,7 +6913,7 @@

CSVW Validation Tests

- + @@ -6929,7 +6929,7 @@

CSVW Validation Tests

- + @@ -6945,7 +6945,7 @@

CSVW Validation Tests

- + @@ -6961,7 +6961,7 @@

CSVW Validation Tests

- + @@ -6977,7 +6977,7 @@

CSVW Validation Tests

- + @@ -6993,7 +6993,7 @@

CSVW Validation Tests

- + @@ -7009,7 +7009,7 @@

CSVW Validation Tests

- + @@ -7025,7 +7025,7 @@

CSVW Validation Tests

- + @@ -7041,7 +7041,7 @@

CSVW Validation Tests

- + @@ -7057,7 +7057,7 @@

CSVW Validation Tests

- + @@ -7073,7 +7073,7 @@

CSVW Validation Tests

- + @@ -7089,7 +7089,7 @@

CSVW Validation Tests

- + @@ -7105,7 +7105,7 @@

CSVW Validation Tests

- + @@ -7121,7 +7121,7 @@

CSVW Validation Tests

- + @@ -7137,7 +7137,7 @@

CSVW Validation Tests

- + @@ -7153,7 +7153,7 @@

CSVW Validation Tests

- + @@ -7169,7 +7169,7 @@

CSVW Validation Tests

- + @@ -7185,7 +7185,7 @@

CSVW Validation Tests

- + @@ -7201,7 +7201,7 @@

CSVW Validation Tests

- + @@ -7217,7 +7217,7 @@

CSVW Validation Tests

- + @@ -7233,7 +7233,7 @@

CSVW Validation Tests

- + @@ -7249,7 +7249,7 @@

CSVW Validation Tests

- + @@ -7265,7 +7265,7 @@

CSVW Validation Tests

- + @@ -7281,7 +7281,7 @@

CSVW Validation Tests

- + @@ -7297,7 +7297,7 @@

CSVW Validation Tests

- + @@ -7313,7 +7313,7 @@

CSVW Validation Tests

- + @@ -7329,7 +7329,7 @@

CSVW Validation Tests

- + @@ -7345,7 +7345,7 @@

CSVW Validation Tests

- + @@ -7361,7 +7361,7 @@

CSVW Validation Tests

- + @@ -7377,7 +7377,7 @@

CSVW Validation Tests

- + @@ -7393,7 +7393,7 @@

CSVW Validation Tests

- + @@ -7409,7 +7409,7 @@

CSVW Validation Tests

- + @@ -7425,7 +7425,7 @@

CSVW Validation Tests

- + @@ -7441,7 +7441,7 @@

CSVW Validation Tests

- + @@ -7457,7 +7457,7 @@

CSVW Validation Tests

- + @@ -7473,7 +7473,7 @@

CSVW Validation Tests

- + @@ -7489,7 +7489,7 @@

CSVW Validation Tests

- + @@ -7505,7 +7505,7 @@

CSVW Validation Tests

- + @@ -7521,7 +7521,7 @@

CSVW Validation Tests

- + @@ -7537,7 +7537,7 @@

CSVW Validation Tests

- + @@ -7553,7 +7553,7 @@

CSVW Validation Tests

- + @@ -7569,7 +7569,7 @@

CSVW Validation Tests

- + @@ -7585,7 +7585,7 @@

CSVW Validation Tests

- + @@ -7601,7 +7601,7 @@

CSVW Validation Tests

- + @@ -7617,7 +7617,7 @@

CSVW Validation Tests

- + @@ -7633,7 +7633,7 @@

CSVW Validation Tests

- + @@ -7649,7 +7649,7 @@

CSVW Validation Tests

- + @@ -7665,7 +7665,7 @@

CSVW Validation Tests

- + @@ -7681,7 +7681,7 @@

CSVW Validation Tests

- + @@ -7697,7 +7697,7 @@

CSVW Validation Tests

- + @@ -7713,7 +7713,7 @@

CSVW Validation Tests

- + @@ -7729,7 +7729,7 @@

CSVW Validation Tests

- + @@ -7745,7 +7745,7 @@

CSVW Validation Tests

- + @@ -7761,7 +7761,7 @@

CSVW Validation Tests

- + @@ -7777,7 +7777,7 @@

CSVW Validation Tests

- + @@ -7793,7 +7793,7 @@

CSVW Validation Tests

- + @@ -7809,7 +7809,7 @@

CSVW Validation Tests

- + @@ -7825,7 +7825,7 @@

CSVW Validation Tests

- + @@ -7841,7 +7841,7 @@

CSVW Validation Tests

- + @@ -7857,7 +7857,7 @@

CSVW Validation Tests

- + @@ -7873,7 +7873,7 @@

CSVW Validation Tests

- + @@ -7889,7 +7889,7 @@

CSVW Validation Tests

- + @@ -7905,7 +7905,7 @@

CSVW Validation Tests

- + @@ -7921,7 +7921,7 @@

CSVW Validation Tests

- + @@ -7937,7 +7937,7 @@

CSVW Validation Tests

- + @@ -7953,7 +7953,7 @@

CSVW Validation Tests

- + @@ -7969,7 +7969,7 @@

CSVW Validation Tests

- + @@ -7985,7 +7985,7 @@

CSVW Validation Tests

- + @@ -8001,7 +8001,7 @@

CSVW Validation Tests

- + @@ -8017,7 +8017,7 @@

CSVW Validation Tests

- + @@ -8033,7 +8033,7 @@

CSVW Validation Tests

- + @@ -8049,7 +8049,7 @@

CSVW Validation Tests

- + @@ -8065,7 +8065,7 @@

CSVW Validation Tests

- + @@ -8081,7 +8081,7 @@

CSVW Validation Tests

- + @@ -8097,7 +8097,7 @@

CSVW Validation Tests

- + @@ -8113,7 +8113,7 @@

CSVW Validation Tests

- + @@ -8129,7 +8129,7 @@

CSVW Validation Tests

- + @@ -8145,7 +8145,7 @@

CSVW Validation Tests

- + @@ -8161,7 +8161,7 @@

CSVW Validation Tests

- + @@ -8177,7 +8177,7 @@

CSVW Validation Tests

- + @@ -8193,7 +8193,7 @@

CSVW Validation Tests

- + @@ -8209,7 +8209,7 @@

CSVW Validation Tests

- + @@ -8225,7 +8225,7 @@

CSVW Validation Tests

- + @@ -8241,7 +8241,7 @@

CSVW Validation Tests

- + @@ -8257,7 +8257,7 @@

CSVW Validation Tests

- + @@ -8273,7 +8273,7 @@

CSVW Validation Tests

- + @@ -8289,7 +8289,7 @@

CSVW Validation Tests

- + @@ -8305,7 +8305,7 @@

CSVW Validation Tests

- + @@ -8321,7 +8321,7 @@

CSVW Validation Tests

- + @@ -8337,7 +8337,7 @@

CSVW Validation Tests

- + @@ -8353,7 +8353,7 @@

CSVW Validation Tests

- + @@ -8369,7 +8369,7 @@

CSVW Validation Tests

- + @@ -8385,7 +8385,7 @@

CSVW Validation Tests

- + @@ -8401,7 +8401,7 @@

CSVW Validation Tests

- + @@ -8417,7 +8417,7 @@

CSVW Validation Tests

- + @@ -8433,7 +8433,7 @@

CSVW Validation Tests

- + @@ -8449,7 +8449,7 @@

CSVW Validation Tests

- + @@ -8465,7 +8465,7 @@

CSVW Validation Tests

- + @@ -8481,7 +8481,7 @@

CSVW Validation Tests

- + @@ -8497,7 +8497,7 @@

CSVW Validation Tests

- + @@ -8513,7 +8513,7 @@

CSVW Validation Tests

- + @@ -8529,7 +8529,7 @@

CSVW Validation Tests

- + @@ -8545,7 +8545,7 @@

CSVW Validation Tests

- + @@ -8561,7 +8561,7 @@

CSVW Validation Tests

- + @@ -8577,7 +8577,7 @@

CSVW Validation Tests

- + @@ -8593,7 +8593,7 @@

CSVW Validation Tests

- + @@ -8609,7 +8609,7 @@

CSVW Validation Tests

- + @@ -8625,7 +8625,7 @@

CSVW Validation Tests

- + @@ -8641,7 +8641,7 @@

CSVW Validation Tests

- + @@ -8657,7 +8657,7 @@

CSVW Validation Tests

- + @@ -8673,7 +8673,7 @@

CSVW Validation Tests

- + @@ -8689,7 +8689,7 @@

CSVW Validation Tests

- + @@ -8705,7 +8705,7 @@

CSVW Validation Tests

- + @@ -8721,7 +8721,7 @@

CSVW Validation Tests

- + @@ -8737,7 +8737,7 @@

CSVW Validation Tests

- + @@ -8753,7 +8753,7 @@

CSVW Validation Tests

- + @@ -8769,7 +8769,7 @@

CSVW Validation Tests

- + @@ -8785,7 +8785,7 @@

CSVW Validation Tests

- + @@ -8801,7 +8801,7 @@

CSVW Validation Tests

- + @@ -8817,7 +8817,7 @@

CSVW Validation Tests

- + @@ -8833,7 +8833,7 @@

CSVW Validation Tests

- + @@ -8849,7 +8849,7 @@

CSVW Validation Tests

- + @@ -8865,7 +8865,7 @@

CSVW Validation Tests

- + @@ -8881,7 +8881,7 @@

CSVW Validation Tests

- + @@ -8897,7 +8897,7 @@

CSVW Validation Tests

- + @@ -8913,7 +8913,7 @@

CSVW Validation Tests

- + @@ -8929,7 +8929,7 @@

CSVW Validation Tests

- + @@ -8945,7 +8945,7 @@

CSVW Validation Tests

- + @@ -8961,7 +8961,7 @@

CSVW Validation Tests

- + @@ -8977,7 +8977,7 @@

CSVW Validation Tests

- + @@ -8993,7 +8993,7 @@

CSVW Validation Tests

- + @@ -9009,7 +9009,7 @@

CSVW Validation Tests

- + @@ -9025,7 +9025,7 @@

CSVW Validation Tests

- + @@ -9041,7 +9041,7 @@

CSVW Validation Tests

- + @@ -9057,7 +9057,7 @@

CSVW Validation Tests

- + @@ -9073,7 +9073,7 @@

CSVW Validation Tests

- + @@ -9089,7 +9089,7 @@

CSVW Validation Tests

- + @@ -9105,7 +9105,7 @@

CSVW Validation Tests

- + @@ -9121,7 +9121,7 @@

CSVW Validation Tests

- + @@ -9137,7 +9137,7 @@

CSVW Validation Tests

- + @@ -9153,7 +9153,7 @@

CSVW Validation Tests

- + @@ -9169,7 +9169,7 @@

CSVW Validation Tests

- + @@ -9185,7 +9185,7 @@

CSVW Validation Tests

- + @@ -9201,7 +9201,7 @@

CSVW Validation Tests

- + @@ -9217,7 +9217,7 @@

CSVW Validation Tests

- + @@ -9233,7 +9233,7 @@

CSVW Validation Tests

- + @@ -9249,7 +9249,7 @@

CSVW Validation Tests

- + @@ -9265,7 +9265,7 @@

CSVW Validation Tests

- + @@ -9281,7 +9281,7 @@

CSVW Validation Tests

- + @@ -9297,7 +9297,7 @@

CSVW Validation Tests

- + @@ -9313,7 +9313,7 @@

CSVW Validation Tests

- + @@ -9329,7 +9329,7 @@

CSVW Validation Tests

- + @@ -9345,7 +9345,7 @@

CSVW Validation Tests

- + @@ -9361,7 +9361,7 @@

CSVW Validation Tests

- + @@ -9377,7 +9377,7 @@

CSVW Validation Tests

- + @@ -9393,7 +9393,7 @@

CSVW Validation Tests

- + @@ -9409,7 +9409,7 @@

CSVW Validation Tests

- + @@ -9425,7 +9425,7 @@

CSVW Validation Tests

- + @@ -9441,7 +9441,7 @@

CSVW Validation Tests

- + @@ -9457,7 +9457,7 @@

CSVW Validation Tests

- + @@ -9473,7 +9473,7 @@

CSVW Validation Tests

- + @@ -9489,7 +9489,7 @@

CSVW Validation Tests

- + @@ -9505,7 +9505,7 @@

CSVW Validation Tests

- + @@ -9521,7 +9521,7 @@

CSVW Validation Tests

- + @@ -9537,7 +9537,7 @@

CSVW Validation Tests

- + @@ -9553,7 +9553,7 @@

CSVW Validation Tests

- + @@ -9569,7 +9569,7 @@

CSVW Validation Tests

- + @@ -9585,7 +9585,7 @@

CSVW Validation Tests

- + @@ -9601,7 +9601,7 @@

CSVW Validation Tests

- + @@ -9617,7 +9617,7 @@

CSVW Validation Tests

- + @@ -9633,7 +9633,7 @@

CSVW Validation Tests

- + @@ -9649,7 +9649,7 @@

CSVW Validation Tests

- + @@ -9665,7 +9665,7 @@

CSVW Validation Tests

- + @@ -9681,7 +9681,7 @@

CSVW Validation Tests

- + @@ -9697,7 +9697,7 @@

CSVW Validation Tests

- + @@ -9713,7 +9713,7 @@

CSVW Validation Tests

- + @@ -9729,7 +9729,7 @@

CSVW Validation Tests

- + @@ -9745,7 +9745,7 @@

CSVW Validation Tests

- + @@ -9761,7 +9761,7 @@

CSVW Validation Tests

- + @@ -9777,7 +9777,7 @@

CSVW Validation Tests

- + @@ -9793,7 +9793,7 @@

CSVW Validation Tests

- + @@ -9809,7 +9809,7 @@

CSVW Validation Tests

- + @@ -9825,7 +9825,7 @@

CSVW Validation Tests

- + @@ -9841,7 +9841,7 @@

CSVW Validation Tests

- + @@ -9857,7 +9857,7 @@

CSVW Validation Tests

- + @@ -9873,7 +9873,7 @@

CSVW Validation Tests

- + @@ -9889,7 +9889,7 @@

CSVW Validation Tests

- + @@ -9905,7 +9905,7 @@

CSVW Validation Tests

- + @@ -9921,7 +9921,7 @@

CSVW Validation Tests

- + @@ -9937,7 +9937,7 @@

CSVW Validation Tests

- + @@ -9953,7 +9953,7 @@

CSVW Validation Tests

- + @@ -9969,7 +9969,7 @@

CSVW Validation Tests

- + @@ -9985,7 +9985,7 @@

CSVW Validation Tests

- + @@ -10001,7 +10001,7 @@

CSVW Validation Tests

- + @@ -10017,7 +10017,7 @@

CSVW Validation Tests

- + @@ -10033,7 +10033,7 @@

CSVW Validation Tests

- + @@ -10049,7 +10049,7 @@

CSVW Validation Tests

- + @@ -10065,7 +10065,7 @@

CSVW Validation Tests

- + @@ -10081,7 +10081,7 @@

CSVW Validation Tests

- + @@ -10097,7 +10097,7 @@

CSVW Validation Tests

- + @@ -10113,7 +10113,7 @@

CSVW Validation Tests

- + @@ -10129,7 +10129,7 @@

CSVW Validation Tests

- + @@ -10145,7 +10145,7 @@

CSVW Validation Tests

- + @@ -10161,7 +10161,7 @@

CSVW Validation Tests

- + @@ -10177,7 +10177,7 @@

CSVW Validation Tests

- + @@ -10193,7 +10193,7 @@

CSVW Validation Tests

- + @@ -10209,7 +10209,7 @@

CSVW Validation Tests

- + @@ -10225,7 +10225,7 @@

CSVW Validation Tests

- + @@ -10241,7 +10241,7 @@

CSVW Validation Tests

- + @@ -10257,7 +10257,7 @@

CSVW Validation Tests

- + @@ -10273,7 +10273,7 @@

CSVW Validation Tests

- + @@ -10289,7 +10289,7 @@

CSVW Validation Tests

- + @@ -10305,7 +10305,7 @@

CSVW Validation Tests

- + @@ -10321,7 +10321,7 @@

CSVW Validation Tests

- + @@ -10337,7 +10337,7 @@

CSVW Validation Tests

- + @@ -10353,7 +10353,7 @@

CSVW Validation Tests

- + @@ -10369,7 +10369,7 @@

CSVW Validation Tests

- + @@ -10385,7 +10385,7 @@

CSVW Validation Tests

- + @@ -10401,7 +10401,7 @@

CSVW Validation Tests

- + @@ -10417,7 +10417,7 @@

CSVW Validation Tests

- + @@ -10433,7 +10433,7 @@

CSVW Validation Tests

- + @@ -10449,7 +10449,7 @@

CSVW Validation Tests

- + @@ -10465,7 +10465,7 @@

CSVW Validation Tests

- + @@ -10481,7 +10481,7 @@

CSVW Validation Tests

- + @@ -10497,7 +10497,7 @@

CSVW Validation Tests

- + @@ -10517,13 +10517,13 @@

CSVW Validation Tests

-
+

Report Generation Software

This report generated by - earl-report + earl-report version diff --git a/etc/earl.jsonld b/etc/earl.jsonld index 00ecba6..1610448 100644 --- a/etc/earl.jsonld +++ b/etc/earl.jsonld @@ -110,7 +110,7 @@ "name": "CSV on the Web", "bibRef": "[[tabular-metadata]]", "generatedBy": { - "@id": "http://rubygems.org/gems/earl-report", + "@id": "https://rubygems.org/gems/earl-report", "@type": "doap:Project", "name": "earl-report", "shortdesc": "Earl Report summary generator", @@ -137,7 +137,7 @@ ], "testSubjects": [ { - "@id": "http://rubygems.org/gems/rdf-tabular", + "@id": "https://rubygems.org/gems/rdf-tabular", "@type": [ "earl:TestSubject", "doap:Project" @@ -177,7 +177,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test001", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -202,7 +202,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test005", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -227,7 +227,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test006", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -252,7 +252,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test007", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -277,7 +277,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test008", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -302,7 +302,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test009", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -327,7 +327,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test010", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -352,7 +352,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test011", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -377,7 +377,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test012", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -402,7 +402,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test013", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -427,7 +427,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test014", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -452,7 +452,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test015", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -477,7 +477,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test016", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -502,7 +502,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test017", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -527,7 +527,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test018", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -552,7 +552,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test023", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -577,7 +577,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test027", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -602,7 +602,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test028", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -627,7 +627,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test029", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -652,7 +652,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test030", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -677,7 +677,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test031", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -702,7 +702,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test032", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -727,7 +727,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test033", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -752,7 +752,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test034", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -777,7 +777,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test035", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -802,7 +802,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test036", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -827,7 +827,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test037", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -852,7 +852,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test038", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -877,7 +877,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test039", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -902,7 +902,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test040", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -927,7 +927,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test041", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -952,7 +952,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test042", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -977,7 +977,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test043", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1002,7 +1002,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test044", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1027,7 +1027,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test045", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1052,7 +1052,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test046", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1077,7 +1077,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test047", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1102,7 +1102,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test048", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1127,7 +1127,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test049", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1152,7 +1152,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test059", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1177,7 +1177,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test060", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1202,7 +1202,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test061", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1227,7 +1227,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test062", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1252,7 +1252,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test063", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1277,7 +1277,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test065", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1302,7 +1302,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test066", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1327,7 +1327,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test067", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1352,7 +1352,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test068", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1377,7 +1377,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test069", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1402,7 +1402,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test070", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1427,7 +1427,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test071", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1452,7 +1452,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test072", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1477,7 +1477,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test073", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1502,7 +1502,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test074", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1526,7 +1526,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test075", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1551,7 +1551,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test076", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1576,7 +1576,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test077", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1600,7 +1600,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test078", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1624,7 +1624,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test079", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1648,7 +1648,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test080", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1672,7 +1672,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test081", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1696,7 +1696,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test082", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1720,7 +1720,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test083", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1744,7 +1744,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test084", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1768,7 +1768,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test085", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1792,7 +1792,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test086", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1816,7 +1816,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test087", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1840,7 +1840,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test088", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1864,7 +1864,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test089", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1888,7 +1888,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test090", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1912,7 +1912,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test093", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1937,7 +1937,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test095", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1962,7 +1962,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test097", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -1987,7 +1987,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test098", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2011,7 +2011,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test099", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2036,7 +2036,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test100", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2060,7 +2060,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test101", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2085,7 +2085,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test102", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2110,7 +2110,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test103", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2134,7 +2134,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test104", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2158,7 +2158,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test105", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2182,7 +2182,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test106", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2207,7 +2207,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test107", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2231,7 +2231,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test108", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2255,7 +2255,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test109", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2280,7 +2280,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test110", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2305,7 +2305,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test111", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2330,7 +2330,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test112", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2355,7 +2355,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test113", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2380,7 +2380,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test114", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2405,7 +2405,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test115", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2430,7 +2430,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test116", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2455,7 +2455,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test117", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2480,7 +2480,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test118", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2505,7 +2505,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test119", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2530,7 +2530,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test120", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2555,7 +2555,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test121", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2580,7 +2580,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test122", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2605,7 +2605,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test123", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2630,7 +2630,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test124", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2655,7 +2655,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test125", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2680,7 +2680,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test126", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2705,7 +2705,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test127", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2730,7 +2730,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test128", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2754,7 +2754,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test129", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2779,7 +2779,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test130", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2804,7 +2804,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test131", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2829,7 +2829,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test132", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2854,7 +2854,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test133", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2878,7 +2878,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test134", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2902,7 +2902,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test135", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2926,7 +2926,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test136", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2950,7 +2950,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test137", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2974,7 +2974,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test138", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -2998,7 +2998,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test139", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3022,7 +3022,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test140", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3046,7 +3046,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test141", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3070,7 +3070,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test142", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3094,7 +3094,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test143", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3118,7 +3118,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test144", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3142,7 +3142,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test146", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3166,7 +3166,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test147", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3191,7 +3191,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test148", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3216,7 +3216,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test149", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3241,7 +3241,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test150", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3266,7 +3266,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test151", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3291,7 +3291,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test152", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3316,7 +3316,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test153", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3341,7 +3341,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test154", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3366,7 +3366,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test155", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3391,7 +3391,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test156", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3416,7 +3416,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test157", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3441,7 +3441,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test158", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3466,7 +3466,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test159", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3491,7 +3491,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test160", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3516,7 +3516,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test161", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3541,7 +3541,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test162", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3566,7 +3566,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test163", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3591,7 +3591,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test164", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3616,7 +3616,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test165", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3641,7 +3641,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test166", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3666,7 +3666,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test167", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3691,7 +3691,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test168", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3716,7 +3716,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test169", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3741,7 +3741,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test170", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3766,7 +3766,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test171", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3791,7 +3791,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test172", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3816,7 +3816,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test173", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3841,7 +3841,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test174", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3866,7 +3866,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test175", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3891,7 +3891,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test176", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3916,7 +3916,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test177", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3941,7 +3941,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test178", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3966,7 +3966,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test179", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -3991,7 +3991,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test180", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4016,7 +4016,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test181", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4041,7 +4041,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test182", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4066,7 +4066,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test183", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4091,7 +4091,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test184", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4116,7 +4116,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test185", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4141,7 +4141,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test186", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4166,7 +4166,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test187", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4191,7 +4191,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test188", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4216,7 +4216,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test189", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4241,7 +4241,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test190", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4266,7 +4266,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test191", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4291,7 +4291,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test192", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4316,7 +4316,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test193", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4341,7 +4341,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test194", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4366,7 +4366,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test195", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4391,7 +4391,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test196", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4416,7 +4416,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test197", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4441,7 +4441,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test198", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4466,7 +4466,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test199", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4490,7 +4490,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test200", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4514,7 +4514,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test201", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4538,7 +4538,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test202", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4563,7 +4563,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test203", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4588,7 +4588,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test204", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4613,7 +4613,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test205", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4638,7 +4638,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test206", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4663,7 +4663,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test207", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4688,7 +4688,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test208", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4713,7 +4713,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test209", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4738,7 +4738,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test210", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4763,7 +4763,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test211", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4788,7 +4788,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test212", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4813,7 +4813,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test213", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4838,7 +4838,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test214", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4863,7 +4863,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test215", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4888,7 +4888,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test216", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4912,7 +4912,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test217", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4936,7 +4936,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test218", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4960,7 +4960,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test219", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -4984,7 +4984,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test220", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5008,7 +5008,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test221", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5032,7 +5032,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test222", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5056,7 +5056,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test223", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5080,7 +5080,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test224", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5104,7 +5104,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test225", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5128,7 +5128,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test226", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5152,7 +5152,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test227", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5176,7 +5176,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test228", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5201,7 +5201,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test229", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5226,7 +5226,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test230", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5251,7 +5251,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test231", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5276,7 +5276,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test232", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5301,7 +5301,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test233", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5326,7 +5326,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test234", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5351,7 +5351,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test235", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5376,7 +5376,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test236", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5401,7 +5401,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test237", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5426,7 +5426,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test238", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5451,7 +5451,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test242", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5476,7 +5476,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test243", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5500,7 +5500,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test244", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5524,7 +5524,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test245", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5549,7 +5549,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test246", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5574,7 +5574,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test247", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5599,7 +5599,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test248", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5624,7 +5624,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test251", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5648,7 +5648,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test252", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5672,7 +5672,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test253", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5696,7 +5696,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test259", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5721,7 +5721,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test260", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5746,7 +5746,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-json#test261", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5781,7 +5781,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test001", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5806,7 +5806,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test005", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5831,7 +5831,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test006", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5856,7 +5856,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test007", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5881,7 +5881,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test008", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5906,7 +5906,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test009", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5931,7 +5931,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test010", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5956,7 +5956,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test011", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -5981,7 +5981,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test012", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6006,7 +6006,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test013", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6031,7 +6031,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test014", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6056,7 +6056,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test015", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6081,7 +6081,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test016", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6106,7 +6106,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test017", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6131,7 +6131,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test018", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6156,7 +6156,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test023", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6181,7 +6181,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test027", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6206,7 +6206,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test028", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6231,7 +6231,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test029", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6256,7 +6256,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test030", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6281,7 +6281,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test031", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6306,7 +6306,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test032", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6331,7 +6331,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test033", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6356,7 +6356,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test034", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6381,7 +6381,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test035", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6406,7 +6406,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test036", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6431,7 +6431,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test037", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6456,7 +6456,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test038", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6481,7 +6481,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test039", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6506,7 +6506,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test040", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6531,7 +6531,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test041", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6556,7 +6556,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test042", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6581,7 +6581,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test043", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6606,7 +6606,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test044", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6631,7 +6631,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test045", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6656,7 +6656,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test046", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6681,7 +6681,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test047", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6706,7 +6706,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test048", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6731,7 +6731,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test049", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6756,7 +6756,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test059", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6781,7 +6781,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test060", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6806,7 +6806,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test061", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6831,7 +6831,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test062", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6856,7 +6856,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test063", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6881,7 +6881,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test065", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6906,7 +6906,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test066", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6931,7 +6931,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test067", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6956,7 +6956,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test068", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -6981,7 +6981,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test069", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7006,7 +7006,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test070", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7031,7 +7031,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test071", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7056,7 +7056,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test072", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7081,7 +7081,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test073", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7106,7 +7106,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test074", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7130,7 +7130,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test075", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7155,7 +7155,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test076", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7180,7 +7180,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test077", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7204,7 +7204,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test078", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7228,7 +7228,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test079", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7252,7 +7252,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test080", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7276,7 +7276,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test081", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7300,7 +7300,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test082", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7324,7 +7324,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test083", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7348,7 +7348,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test084", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7372,7 +7372,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test085", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7396,7 +7396,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test086", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7420,7 +7420,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test087", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7444,7 +7444,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test088", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7468,7 +7468,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test089", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7492,7 +7492,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test090", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7516,7 +7516,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test093", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7541,7 +7541,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test095", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7566,7 +7566,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test097", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7591,7 +7591,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test098", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7615,7 +7615,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test099", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7640,7 +7640,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test100", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7664,7 +7664,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test101", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7689,7 +7689,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test102", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7714,7 +7714,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test103", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7738,7 +7738,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test104", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7762,7 +7762,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test105", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7786,7 +7786,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test106", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7811,7 +7811,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test107", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7835,7 +7835,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test108", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7859,7 +7859,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test109", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7884,7 +7884,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test110", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7909,7 +7909,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test111", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7934,7 +7934,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test112", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7959,7 +7959,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test113", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -7984,7 +7984,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test114", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8009,7 +8009,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test115", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8034,7 +8034,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test116", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8059,7 +8059,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test117", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8084,7 +8084,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test118", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8109,7 +8109,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test119", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8134,7 +8134,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test120", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8159,7 +8159,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test121", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8184,7 +8184,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test122", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8209,7 +8209,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test123", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8234,7 +8234,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test124", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8259,7 +8259,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test125", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8284,7 +8284,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test126", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8309,7 +8309,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test127", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8334,7 +8334,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test128", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8358,7 +8358,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test129", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8383,7 +8383,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test130", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8408,7 +8408,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test131", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8433,7 +8433,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test132", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8458,7 +8458,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test133", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8482,7 +8482,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test134", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8506,7 +8506,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test135", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8530,7 +8530,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test136", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8554,7 +8554,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test137", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8578,7 +8578,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test138", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8602,7 +8602,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test139", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8626,7 +8626,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test140", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8650,7 +8650,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test141", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8674,7 +8674,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test142", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8698,7 +8698,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test143", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8722,7 +8722,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test144", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8746,7 +8746,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test146", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8770,7 +8770,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test147", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8795,7 +8795,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test148", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8820,7 +8820,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test149", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8845,7 +8845,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test150", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8870,7 +8870,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test151", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8895,7 +8895,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test152", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8920,7 +8920,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test153", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8945,7 +8945,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test154", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8970,7 +8970,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test155", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -8995,7 +8995,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test156", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9020,7 +9020,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test157", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9045,7 +9045,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test158", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9070,7 +9070,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test159", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9095,7 +9095,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test160", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9120,7 +9120,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test161", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9145,7 +9145,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test162", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9170,7 +9170,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test163", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9195,7 +9195,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test164", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9220,7 +9220,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test165", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9245,7 +9245,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test166", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9270,7 +9270,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test167", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9295,7 +9295,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test168", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9320,7 +9320,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test169", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9345,7 +9345,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test170", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9370,7 +9370,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test171", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9395,7 +9395,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test172", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9420,7 +9420,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test173", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9445,7 +9445,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test174", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9470,7 +9470,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test175", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9495,7 +9495,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test176", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9520,7 +9520,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test177", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9545,7 +9545,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test178", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9570,7 +9570,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test179", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9595,7 +9595,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test180", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9620,7 +9620,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test181", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9645,7 +9645,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test182", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9670,7 +9670,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test183", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9695,7 +9695,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test184", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9720,7 +9720,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test185", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9745,7 +9745,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test186", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9770,7 +9770,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test187", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9795,7 +9795,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test188", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9820,7 +9820,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test189", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9845,7 +9845,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test190", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9870,7 +9870,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test191", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9895,7 +9895,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test192", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9920,7 +9920,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test193", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9945,7 +9945,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test194", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9970,7 +9970,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test195", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -9995,7 +9995,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test196", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10020,7 +10020,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test197", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10045,7 +10045,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test198", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10070,7 +10070,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test199", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10094,7 +10094,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test200", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10118,7 +10118,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test201", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10142,7 +10142,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test202", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10167,7 +10167,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test203", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10192,7 +10192,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test204", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10217,7 +10217,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test205", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10242,7 +10242,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test206", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10267,7 +10267,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test207", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10292,7 +10292,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test208", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10317,7 +10317,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test209", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10342,7 +10342,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test210", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10367,7 +10367,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test211", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10392,7 +10392,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test212", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10417,7 +10417,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test213", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10442,7 +10442,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test214", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10467,7 +10467,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test215", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10492,7 +10492,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test216", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10516,7 +10516,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test217", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10540,7 +10540,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test218", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10564,7 +10564,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test219", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10588,7 +10588,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test220", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10612,7 +10612,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test221", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10636,7 +10636,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test222", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10660,7 +10660,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test223", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10684,7 +10684,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test224", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10708,7 +10708,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test225", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10732,7 +10732,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test226", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10756,7 +10756,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test227", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10780,7 +10780,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test228", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10805,7 +10805,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test229", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10830,7 +10830,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test230", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10855,7 +10855,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test231", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10880,7 +10880,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test232", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10905,7 +10905,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test233", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10930,7 +10930,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test234", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10955,7 +10955,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test235", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -10980,7 +10980,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test236", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11005,7 +11005,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test237", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11030,7 +11030,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test238", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11055,7 +11055,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test242", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11080,7 +11080,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test243", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11104,7 +11104,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test244", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11128,7 +11128,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test245", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11153,7 +11153,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test246", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11178,7 +11178,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test247", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11203,7 +11203,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test248", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11228,7 +11228,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test251", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11252,7 +11252,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test252", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11276,7 +11276,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test253", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11300,7 +11300,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test259", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11325,7 +11325,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test260", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11350,7 +11350,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-rdf#test261", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11385,7 +11385,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test001", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11409,7 +11409,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test005", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11433,7 +11433,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test006", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11457,7 +11457,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test007", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11481,7 +11481,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test008", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11505,7 +11505,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test009", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11529,7 +11529,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test010", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11553,7 +11553,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test011", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11577,7 +11577,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test012", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11601,7 +11601,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test013", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11625,7 +11625,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test014", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11649,7 +11649,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test015", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11673,7 +11673,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test016", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11697,7 +11697,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test017", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11721,7 +11721,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test018", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11745,7 +11745,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test023", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11769,7 +11769,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test027", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11793,7 +11793,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test028", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11817,7 +11817,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test029", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11841,7 +11841,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test030", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11865,7 +11865,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test031", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11889,7 +11889,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test032", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11913,7 +11913,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test033", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11937,7 +11937,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test034", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11961,7 +11961,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test035", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -11985,7 +11985,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test036", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12009,7 +12009,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test037", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12033,7 +12033,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test038", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12057,7 +12057,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test039", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12081,7 +12081,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test040", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12105,7 +12105,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test041", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12129,7 +12129,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test042", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12153,7 +12153,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test043", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12177,7 +12177,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test044", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12201,7 +12201,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test045", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12225,7 +12225,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test046", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12249,7 +12249,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test047", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12273,7 +12273,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test048", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12297,7 +12297,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test049", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12321,7 +12321,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test059", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12345,7 +12345,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test060", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12369,7 +12369,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test061", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12393,7 +12393,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test062", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12417,7 +12417,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test063", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12441,7 +12441,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test065", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12465,7 +12465,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test066", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12489,7 +12489,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test067", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12513,7 +12513,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test068", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12537,7 +12537,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test069", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12561,7 +12561,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test070", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12585,7 +12585,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test071", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12609,7 +12609,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test072", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12633,7 +12633,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test073", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12657,7 +12657,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test074", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12681,7 +12681,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test075", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12705,7 +12705,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test076", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12729,7 +12729,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test077", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12753,7 +12753,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test078", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12777,7 +12777,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test079", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12801,7 +12801,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test080", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12825,7 +12825,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test081", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12849,7 +12849,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test082", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12873,7 +12873,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test083", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12897,7 +12897,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test084", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12921,7 +12921,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test085", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12945,7 +12945,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test086", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12969,7 +12969,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test087", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -12993,7 +12993,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test088", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13017,7 +13017,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test089", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13041,7 +13041,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test090", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13065,7 +13065,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test092", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13089,7 +13089,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test093", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13113,7 +13113,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test094", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13137,7 +13137,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test095", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13161,7 +13161,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test096", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13185,7 +13185,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test097", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13209,7 +13209,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test098", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13233,7 +13233,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test099", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13257,7 +13257,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test100", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13281,7 +13281,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test101", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13305,7 +13305,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test102", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13329,7 +13329,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test103", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13353,7 +13353,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test104", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13377,7 +13377,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test105", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13401,7 +13401,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test106", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13425,7 +13425,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test107", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13449,7 +13449,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test108", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13473,7 +13473,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test109", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13497,7 +13497,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test110", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13521,7 +13521,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test111", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13545,7 +13545,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test112", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13569,7 +13569,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test113", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13593,7 +13593,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test114", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13617,7 +13617,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test115", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13641,7 +13641,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test116", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13665,7 +13665,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test117", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13689,7 +13689,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test118", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13713,7 +13713,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test119", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13737,7 +13737,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test120", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13761,7 +13761,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test121", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13785,7 +13785,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test122", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13809,7 +13809,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test123", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13833,7 +13833,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test124", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13857,7 +13857,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test125", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13881,7 +13881,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test126", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13905,7 +13905,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test127", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13929,7 +13929,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test128", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13953,7 +13953,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test129", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -13977,7 +13977,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test130", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14001,7 +14001,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test131", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14025,7 +14025,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test132", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14049,7 +14049,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test133", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14073,7 +14073,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test134", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14097,7 +14097,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test135", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14121,7 +14121,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test136", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14145,7 +14145,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test137", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14169,7 +14169,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test138", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14193,7 +14193,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test139", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14217,7 +14217,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test140", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14241,7 +14241,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test141", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14265,7 +14265,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test142", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14289,7 +14289,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test143", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14313,7 +14313,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test144", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14337,7 +14337,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test145", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14361,7 +14361,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test146", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14385,7 +14385,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test147", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14409,7 +14409,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test148", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14433,7 +14433,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test149", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14457,7 +14457,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test150", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14481,7 +14481,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test151", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14505,7 +14505,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test152", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14529,7 +14529,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test153", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14553,7 +14553,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test154", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14577,7 +14577,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test155", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14601,7 +14601,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test156", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14625,7 +14625,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test157", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14649,7 +14649,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test158", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14673,7 +14673,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test159", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14697,7 +14697,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test160", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14721,7 +14721,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test161", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14745,7 +14745,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test162", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14769,7 +14769,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test163", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14793,7 +14793,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test164", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14817,7 +14817,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test165", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14841,7 +14841,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test166", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14865,7 +14865,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test167", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14889,7 +14889,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test168", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14913,7 +14913,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test169", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14937,7 +14937,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test170", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14961,7 +14961,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test171", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -14985,7 +14985,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test172", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15009,7 +15009,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test173", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15033,7 +15033,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test174", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15057,7 +15057,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test175", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15081,7 +15081,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test176", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15105,7 +15105,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test177", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15129,7 +15129,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test178", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15153,7 +15153,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test179", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15177,7 +15177,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test180", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15201,7 +15201,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test181", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15225,7 +15225,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test182", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15249,7 +15249,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test183", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15273,7 +15273,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test184", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15297,7 +15297,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test185", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15321,7 +15321,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test186", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15345,7 +15345,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test187", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15369,7 +15369,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test188", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15393,7 +15393,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test189", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15417,7 +15417,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test190", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15441,7 +15441,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test191", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15465,7 +15465,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test192", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15489,7 +15489,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test193", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15513,7 +15513,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test194", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15537,7 +15537,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test195", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15561,7 +15561,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test196", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15585,7 +15585,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test197", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15609,7 +15609,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test198", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15633,7 +15633,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test199", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15657,7 +15657,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test200", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15681,7 +15681,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test201", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15705,7 +15705,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test202", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15729,7 +15729,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test203", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15753,7 +15753,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test204", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15777,7 +15777,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test205", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15801,7 +15801,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test206", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15825,7 +15825,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test207", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15849,7 +15849,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test208", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15873,7 +15873,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test209", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15897,7 +15897,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test210", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15921,7 +15921,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test211", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15945,7 +15945,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test212", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15969,7 +15969,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test213", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -15993,7 +15993,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test214", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16017,7 +16017,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test215", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16041,7 +16041,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test216", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16065,7 +16065,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test217", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16089,7 +16089,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test218", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16113,7 +16113,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test219", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16137,7 +16137,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test220", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16161,7 +16161,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test221", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16185,7 +16185,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test222", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16209,7 +16209,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test223", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16233,7 +16233,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test224", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16257,7 +16257,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test225", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16281,7 +16281,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test226", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16305,7 +16305,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test227", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16329,7 +16329,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test228", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16353,7 +16353,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test229", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16377,7 +16377,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test230", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16401,7 +16401,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test231", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16425,7 +16425,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test232", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16449,7 +16449,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test233", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16473,7 +16473,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test234", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16497,7 +16497,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test235", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16521,7 +16521,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test236", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16545,7 +16545,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test237", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16569,7 +16569,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test238", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16593,7 +16593,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test242", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16617,7 +16617,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test243", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16641,7 +16641,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test244", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16665,7 +16665,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test245", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16689,7 +16689,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test246", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16713,7 +16713,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test247", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16737,7 +16737,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test248", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16761,7 +16761,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test249", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16785,7 +16785,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test250", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16809,7 +16809,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test251", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16833,7 +16833,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test252", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16857,7 +16857,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test253", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16881,7 +16881,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test254", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16905,7 +16905,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test255", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16929,7 +16929,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test256", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16953,7 +16953,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test257", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -16977,7 +16977,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test258", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -17001,7 +17001,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test259", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -17025,7 +17025,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test260", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", @@ -17049,7 +17049,7 @@ { "@type": "earl:Assertion", "test": "http://www.w3.org/2013/csvw/tests/manifest-validation#test261", - "subject": "http://rubygems.org/gems/rdf-tabular", + "subject": "https://rubygems.org/gems/rdf-tabular", "mode": "earl:automatic", "result": { "@type": "earl:TestResult", diff --git a/etc/earl.ttl b/etc/earl.ttl index f3cecf7..33e34d5 100644 --- a/etc/earl.ttl +++ b/etc/earl.ttl @@ -6,10 +6,10 @@ @prefix doap: . @prefix xsd: . - a doap:Project, earl:TestSubject, earl:Software ; + a doap:Project, earl:TestSubject, earl:Software ; doap:name "RDF::Tabular" ; doap:homepage ; - doap:license ; + doap:license ; doap:shortdesc "Tabular Data RDF Reader and JSON serializer."@en ; doap:description "RDF::Tabular processes tabular data with metadata creating RDF or JSON output."@en ; doap:created "2015-01-05"^^xsd:date ; @@ -20,9 +20,9 @@ ; doap:category , ; - doap:download-page ; + doap:download-page ; doap:mailing-list ; - doap:bug-database ; + doap:bug-database ; doap:blog ; doap:developer ; doap:maintainer ; @@ -32,9 +32,9 @@ dc:description "RDF::Tabular processes tabular data with metadata creating RDF or JSON output."@en ; dc:date "2015-01-05"^^xsd:date ; dc:creator ; - dc:isPartOf . + dc:isPartOf . -<> foaf:primaryTopic ; +<> foaf:primaryTopic ; dc:issued "2015-10-21T09:10:45-07:00"^^xsd:dateTime ; foaf:maker . @@ -43,7 +43,7 @@ foaf:title "Implementor"; foaf:homepage . - + doap:release . a doap:Version; @@ -52,7 +52,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -62,7 +62,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -72,7 +72,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -82,7 +82,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -92,7 +92,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -102,7 +102,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -112,7 +112,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -122,7 +122,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -132,7 +132,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -142,7 +142,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -152,7 +152,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -162,7 +162,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -172,7 +172,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -182,7 +182,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -192,7 +192,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -202,7 +202,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -212,7 +212,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -222,7 +222,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -232,7 +232,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -242,7 +242,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -252,7 +252,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -262,7 +262,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -272,7 +272,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -282,7 +282,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -292,7 +292,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -302,7 +302,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -312,7 +312,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -322,7 +322,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -332,7 +332,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -342,7 +342,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -352,7 +352,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -362,7 +362,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -372,7 +372,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -382,7 +382,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -392,7 +392,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -402,7 +402,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -412,7 +412,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -422,7 +422,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -432,7 +432,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -442,7 +442,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -452,7 +452,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -462,7 +462,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -472,7 +472,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -482,7 +482,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -492,7 +492,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -502,7 +502,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -512,7 +512,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -522,7 +522,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -532,7 +532,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -542,7 +542,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -552,7 +552,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -562,7 +562,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -572,7 +572,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -582,7 +582,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -592,7 +592,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -602,7 +602,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -612,7 +612,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -622,7 +622,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -632,7 +632,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -642,7 +642,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -652,7 +652,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -662,7 +662,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -672,7 +672,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -682,7 +682,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -692,7 +692,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -702,7 +702,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -712,7 +712,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -722,7 +722,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -732,7 +732,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -742,7 +742,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -752,7 +752,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -762,7 +762,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -772,7 +772,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -782,7 +782,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -792,7 +792,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -802,7 +802,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -812,7 +812,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -822,7 +822,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -832,7 +832,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -842,7 +842,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -852,7 +852,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -862,7 +862,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -872,7 +872,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -882,7 +882,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -892,7 +892,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -902,7 +902,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -912,7 +912,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -922,7 +922,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -932,7 +932,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -942,7 +942,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -952,7 +952,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -962,7 +962,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -972,7 +972,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -982,7 +982,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -992,7 +992,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1002,7 +1002,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1012,7 +1012,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1022,7 +1022,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1032,7 +1032,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1042,7 +1042,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1052,7 +1052,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1062,7 +1062,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1072,7 +1072,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1082,7 +1082,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1092,7 +1092,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1102,7 +1102,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1112,7 +1112,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1122,7 +1122,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1132,7 +1132,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1142,7 +1142,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1152,7 +1152,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1162,7 +1162,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1172,7 +1172,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1182,7 +1182,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1192,7 +1192,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1202,7 +1202,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1212,7 +1212,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1222,7 +1222,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1232,7 +1232,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1242,7 +1242,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1252,7 +1252,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1262,7 +1262,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1272,7 +1272,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1282,7 +1282,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1292,7 +1292,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1302,7 +1302,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1312,7 +1312,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1322,7 +1322,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1332,7 +1332,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1342,7 +1342,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1352,7 +1352,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1362,7 +1362,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1372,7 +1372,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1382,7 +1382,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1392,7 +1392,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1402,7 +1402,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1412,7 +1412,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1422,7 +1422,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1432,7 +1432,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1442,7 +1442,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1452,7 +1452,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1462,7 +1462,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1472,7 +1472,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1482,7 +1482,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1492,7 +1492,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1502,7 +1502,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1512,7 +1512,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1522,7 +1522,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1532,7 +1532,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1542,7 +1542,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1552,7 +1552,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1562,7 +1562,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1572,7 +1572,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1582,7 +1582,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1592,7 +1592,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1602,7 +1602,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1612,7 +1612,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1622,7 +1622,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1632,7 +1632,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1642,7 +1642,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1652,7 +1652,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1662,7 +1662,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1672,7 +1672,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1682,7 +1682,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1692,7 +1692,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1702,7 +1702,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1712,7 +1712,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1722,7 +1722,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1732,7 +1732,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1742,7 +1742,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1752,7 +1752,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1762,7 +1762,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1772,7 +1772,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1782,7 +1782,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1792,7 +1792,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1802,7 +1802,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1812,7 +1812,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1822,7 +1822,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1832,7 +1832,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1842,7 +1842,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1852,7 +1852,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1862,7 +1862,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1872,7 +1872,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1882,7 +1882,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1892,7 +1892,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1902,7 +1902,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1912,7 +1912,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1922,7 +1922,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1932,7 +1932,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1942,7 +1942,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1952,7 +1952,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1962,7 +1962,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1972,7 +1972,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1982,7 +1982,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -1992,7 +1992,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2002,7 +2002,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2012,7 +2012,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2022,7 +2022,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2032,7 +2032,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2042,7 +2042,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2052,7 +2052,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2062,7 +2062,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2072,7 +2072,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2082,7 +2082,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2092,7 +2092,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2102,7 +2102,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2112,7 +2112,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2122,7 +2122,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2132,7 +2132,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2142,7 +2142,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2152,7 +2152,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2162,7 +2162,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2172,7 +2172,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2182,7 +2182,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2192,7 +2192,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2202,7 +2202,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2212,7 +2212,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2222,7 +2222,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2232,7 +2232,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2242,7 +2242,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2252,7 +2252,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2262,7 +2262,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2272,7 +2272,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2282,7 +2282,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2292,7 +2292,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2302,7 +2302,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2312,7 +2312,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2322,7 +2322,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2332,7 +2332,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2342,7 +2342,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2352,7 +2352,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2362,7 +2362,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2372,7 +2372,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2382,7 +2382,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2392,7 +2392,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2402,7 +2402,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2412,7 +2412,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2422,7 +2422,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2432,7 +2432,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2442,7 +2442,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2452,7 +2452,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2462,7 +2462,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2472,7 +2472,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2482,7 +2482,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2492,7 +2492,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2502,7 +2502,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2512,7 +2512,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2522,7 +2522,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2532,7 +2532,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2542,7 +2542,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2552,7 +2552,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2562,7 +2562,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2572,7 +2572,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2582,7 +2582,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2592,7 +2592,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2602,7 +2602,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2612,7 +2612,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2622,7 +2622,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2632,7 +2632,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2642,7 +2642,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2652,7 +2652,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2662,7 +2662,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2672,7 +2672,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2682,7 +2682,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2692,7 +2692,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2702,7 +2702,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2712,7 +2712,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2722,7 +2722,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2732,7 +2732,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2742,7 +2742,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2752,7 +2752,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2762,7 +2762,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2772,7 +2772,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2782,7 +2782,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2792,7 +2792,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2802,7 +2802,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2812,7 +2812,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2822,7 +2822,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2832,7 +2832,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2842,7 +2842,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2852,7 +2852,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2862,7 +2862,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2872,7 +2872,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2882,7 +2882,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2892,7 +2892,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2902,7 +2902,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2912,7 +2912,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2922,7 +2922,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2932,7 +2932,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2942,7 +2942,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2952,7 +2952,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2962,7 +2962,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2972,7 +2972,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2982,7 +2982,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -2992,7 +2992,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3002,7 +3002,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3012,7 +3012,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3022,7 +3022,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3032,7 +3032,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3042,7 +3042,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3052,7 +3052,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3062,7 +3062,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3072,7 +3072,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3082,7 +3082,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3092,7 +3092,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3102,7 +3102,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3112,7 +3112,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3122,7 +3122,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3132,7 +3132,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3142,7 +3142,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3152,7 +3152,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3162,7 +3162,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3172,7 +3172,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3182,7 +3182,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3192,7 +3192,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3202,7 +3202,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3212,7 +3212,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3222,7 +3222,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3232,7 +3232,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3242,7 +3242,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3252,7 +3252,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3262,7 +3262,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3272,7 +3272,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3282,7 +3282,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3292,7 +3292,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3302,7 +3302,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3312,7 +3312,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3322,7 +3322,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3332,7 +3332,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3342,7 +3342,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3352,7 +3352,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3362,7 +3362,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3372,7 +3372,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3382,7 +3382,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3392,7 +3392,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3402,7 +3402,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3412,7 +3412,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3422,7 +3422,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3432,7 +3432,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3442,7 +3442,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3452,7 +3452,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3462,7 +3462,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3472,7 +3472,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3482,7 +3482,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3492,7 +3492,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3502,7 +3502,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3512,7 +3512,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3522,7 +3522,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3532,7 +3532,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3542,7 +3542,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3552,7 +3552,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3562,7 +3562,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3572,7 +3572,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3582,7 +3582,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3592,7 +3592,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3602,7 +3602,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3612,7 +3612,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3622,7 +3622,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3632,7 +3632,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3642,7 +3642,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3652,7 +3652,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3662,7 +3662,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3672,7 +3672,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3682,7 +3682,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3692,7 +3692,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3702,7 +3702,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3712,7 +3712,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3722,7 +3722,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3732,7 +3732,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3742,7 +3742,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3752,7 +3752,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3762,7 +3762,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3772,7 +3772,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3782,7 +3782,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3792,7 +3792,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3802,7 +3802,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3812,7 +3812,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3822,7 +3822,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3832,7 +3832,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3842,7 +3842,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3852,7 +3852,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3862,7 +3862,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3872,7 +3872,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3882,7 +3882,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3892,7 +3892,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3902,7 +3902,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3912,7 +3912,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3922,7 +3922,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3932,7 +3932,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3942,7 +3942,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3952,7 +3952,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3962,7 +3962,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3972,7 +3972,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3982,7 +3982,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -3992,7 +3992,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4002,7 +4002,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4012,7 +4012,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4022,7 +4022,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4032,7 +4032,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4042,7 +4042,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4052,7 +4052,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4062,7 +4062,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4072,7 +4072,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4082,7 +4082,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4092,7 +4092,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4102,7 +4102,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4112,7 +4112,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4122,7 +4122,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4132,7 +4132,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4142,7 +4142,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4152,7 +4152,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4162,7 +4162,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4172,7 +4172,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4182,7 +4182,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4192,7 +4192,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4202,7 +4202,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4212,7 +4212,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4222,7 +4222,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4232,7 +4232,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4242,7 +4242,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4252,7 +4252,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4262,7 +4262,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4272,7 +4272,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4282,7 +4282,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4292,7 +4292,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4302,7 +4302,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4312,7 +4312,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4322,7 +4322,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4332,7 +4332,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4342,7 +4342,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4352,7 +4352,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4362,7 +4362,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4372,7 +4372,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4382,7 +4382,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4392,7 +4392,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4402,7 +4402,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4412,7 +4412,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4422,7 +4422,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4432,7 +4432,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4442,7 +4442,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4452,7 +4452,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4462,7 +4462,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4472,7 +4472,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4482,7 +4482,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4492,7 +4492,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4502,7 +4502,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4512,7 +4512,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4522,7 +4522,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4532,7 +4532,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4542,7 +4542,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4552,7 +4552,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4562,7 +4562,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4572,7 +4572,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4582,7 +4582,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4592,7 +4592,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4602,7 +4602,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4612,7 +4612,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4622,7 +4622,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4632,7 +4632,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4642,7 +4642,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4652,7 +4652,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4662,7 +4662,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4672,7 +4672,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4682,7 +4682,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4692,7 +4692,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4702,7 +4702,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4712,7 +4712,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4722,7 +4722,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4732,7 +4732,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4742,7 +4742,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4752,7 +4752,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4762,7 +4762,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4772,7 +4772,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4782,7 +4782,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4792,7 +4792,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4802,7 +4802,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4812,7 +4812,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4822,7 +4822,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4832,7 +4832,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4842,7 +4842,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4852,7 +4852,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4862,7 +4862,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4872,7 +4872,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4882,7 +4882,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4892,7 +4892,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4902,7 +4902,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4912,7 +4912,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4922,7 +4922,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4932,7 +4932,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4942,7 +4942,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4952,7 +4952,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4962,7 +4962,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4972,7 +4972,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4982,7 +4982,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -4992,7 +4992,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5002,7 +5002,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5012,7 +5012,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5022,7 +5022,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5032,7 +5032,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5042,7 +5042,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5052,7 +5052,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5062,7 +5062,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5072,7 +5072,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5082,7 +5082,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5092,7 +5092,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5102,7 +5102,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5112,7 +5112,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5122,7 +5122,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5132,7 +5132,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5142,7 +5142,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5152,7 +5152,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5162,7 +5162,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5172,7 +5172,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5182,7 +5182,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5192,7 +5192,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5202,7 +5202,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5212,7 +5212,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5222,7 +5222,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5232,7 +5232,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5242,7 +5242,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5252,7 +5252,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5262,7 +5262,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5272,7 +5272,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5282,7 +5282,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5292,7 +5292,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5302,7 +5302,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5312,7 +5312,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5322,7 +5322,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5332,7 +5332,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5342,7 +5342,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5352,7 +5352,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5362,7 +5362,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5372,7 +5372,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5382,7 +5382,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5392,7 +5392,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5402,7 +5402,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5412,7 +5412,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5422,7 +5422,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5432,7 +5432,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5442,7 +5442,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5452,7 +5452,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5462,7 +5462,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5472,7 +5472,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5482,7 +5482,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5492,7 +5492,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5502,7 +5502,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5512,7 +5512,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5522,7 +5522,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5532,7 +5532,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5542,7 +5542,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5552,7 +5552,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5562,7 +5562,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5572,7 +5572,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5582,7 +5582,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5592,7 +5592,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5602,7 +5602,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5612,7 +5612,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5622,7 +5622,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5632,7 +5632,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5642,7 +5642,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5652,7 +5652,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5662,7 +5662,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5672,7 +5672,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5682,7 +5682,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5692,7 +5692,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5702,7 +5702,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5712,7 +5712,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5722,7 +5722,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5732,7 +5732,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5742,7 +5742,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5752,7 +5752,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5762,7 +5762,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5772,7 +5772,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5782,7 +5782,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5792,7 +5792,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5802,7 +5802,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5812,7 +5812,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5822,7 +5822,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5832,7 +5832,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5842,7 +5842,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5852,7 +5852,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5862,7 +5862,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5872,7 +5872,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5882,7 +5882,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5892,7 +5892,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5902,7 +5902,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5912,7 +5912,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5922,7 +5922,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5932,7 +5932,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5942,7 +5942,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5952,7 +5952,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5962,7 +5962,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5972,7 +5972,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5982,7 +5982,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -5992,7 +5992,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6002,7 +6002,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6012,7 +6012,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6022,7 +6022,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6032,7 +6032,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6042,7 +6042,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6052,7 +6052,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6062,7 +6062,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6072,7 +6072,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6082,7 +6082,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6092,7 +6092,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6102,7 +6102,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6112,7 +6112,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6122,7 +6122,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6132,7 +6132,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6142,7 +6142,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6152,7 +6152,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6162,7 +6162,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6172,7 +6172,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6182,7 +6182,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6192,7 +6192,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6202,7 +6202,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6212,7 +6212,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6222,7 +6222,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6232,7 +6232,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6242,7 +6242,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6252,7 +6252,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6262,7 +6262,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6272,7 +6272,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6282,7 +6282,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6292,7 +6292,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6302,7 +6302,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6312,7 +6312,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6322,7 +6322,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6332,7 +6332,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6342,7 +6342,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6352,7 +6352,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6362,7 +6362,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6372,7 +6372,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6382,7 +6382,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6392,7 +6392,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6402,7 +6402,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6412,7 +6412,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6422,7 +6422,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6432,7 +6432,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6442,7 +6442,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6452,7 +6452,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6462,7 +6462,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6472,7 +6472,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6482,7 +6482,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6492,7 +6492,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6502,7 +6502,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6512,7 +6512,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6522,7 +6522,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6532,7 +6532,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6542,7 +6542,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6552,7 +6552,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6562,7 +6562,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6572,7 +6572,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6582,7 +6582,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6592,7 +6592,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6602,7 +6602,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6612,7 +6612,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6622,7 +6622,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6632,7 +6632,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6642,7 +6642,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6652,7 +6652,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6662,7 +6662,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6672,7 +6672,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6682,7 +6682,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6692,7 +6692,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6702,7 +6702,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6712,7 +6712,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6722,7 +6722,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6732,7 +6732,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6742,7 +6742,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6752,7 +6752,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6762,7 +6762,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6772,7 +6772,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6782,7 +6782,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6792,7 +6792,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6802,7 +6802,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6812,7 +6812,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6822,7 +6822,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6832,7 +6832,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6842,7 +6842,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6852,7 +6852,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6862,7 +6862,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6872,7 +6872,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6882,7 +6882,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6892,7 +6892,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6902,7 +6902,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6912,7 +6912,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6922,7 +6922,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6932,7 +6932,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6942,7 +6942,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6952,7 +6952,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6962,7 +6962,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6972,7 +6972,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6982,7 +6982,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -6992,7 +6992,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7002,7 +7002,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7012,7 +7012,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7022,7 +7022,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7032,7 +7032,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7042,7 +7042,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7052,7 +7052,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7062,7 +7062,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7072,7 +7072,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7082,7 +7082,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7092,7 +7092,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7102,7 +7102,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7112,7 +7112,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7122,7 +7122,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7132,7 +7132,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7142,7 +7142,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7152,7 +7152,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7162,7 +7162,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7172,7 +7172,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7182,7 +7182,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7192,7 +7192,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7202,7 +7202,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7212,7 +7212,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7222,7 +7222,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7232,7 +7232,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7242,7 +7242,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7252,7 +7252,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7262,7 +7262,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7272,7 +7272,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7282,7 +7282,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7292,7 +7292,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7302,7 +7302,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7312,7 +7312,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7322,7 +7322,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7332,7 +7332,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7342,7 +7342,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7352,7 +7352,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7362,7 +7362,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7372,7 +7372,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7382,7 +7382,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7392,7 +7392,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7402,7 +7402,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7412,7 +7412,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7422,7 +7422,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7432,7 +7432,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7442,7 +7442,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7452,7 +7452,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7462,7 +7462,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7472,7 +7472,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7482,7 +7482,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7492,7 +7492,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7502,7 +7502,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7512,7 +7512,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7522,7 +7522,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7532,7 +7532,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7542,7 +7542,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7552,7 +7552,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7562,7 +7562,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7572,7 +7572,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7582,7 +7582,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7592,7 +7592,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7602,7 +7602,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7612,7 +7612,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7622,7 +7622,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7632,7 +7632,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7642,7 +7642,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7652,7 +7652,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7662,7 +7662,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7672,7 +7672,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7682,7 +7682,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7692,7 +7692,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7702,7 +7702,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7712,7 +7712,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7722,7 +7722,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7732,7 +7732,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7742,7 +7742,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7752,7 +7752,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7762,7 +7762,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7772,7 +7772,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7782,7 +7782,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7792,7 +7792,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7802,7 +7802,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7812,7 +7812,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7822,7 +7822,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7832,7 +7832,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7842,7 +7842,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7852,7 +7852,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7862,7 +7862,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7872,7 +7872,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7882,7 +7882,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7892,7 +7892,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7902,7 +7902,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7912,7 +7912,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7922,7 +7922,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7932,7 +7932,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7942,7 +7942,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7952,7 +7952,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7962,7 +7962,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7972,7 +7972,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7982,7 +7982,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -7992,7 +7992,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8002,7 +8002,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8012,7 +8012,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8022,7 +8022,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8032,7 +8032,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8042,7 +8042,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8052,7 +8052,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8062,7 +8062,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8072,7 +8072,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8082,7 +8082,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8092,7 +8092,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8102,7 +8102,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8112,7 +8112,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8122,7 +8122,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8132,7 +8132,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8142,7 +8142,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8152,7 +8152,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8162,7 +8162,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8172,7 +8172,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8182,7 +8182,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8192,7 +8192,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8202,7 +8202,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8212,7 +8212,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8222,7 +8222,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8232,7 +8232,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8242,7 +8242,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8252,7 +8252,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8262,7 +8262,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8272,7 +8272,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8282,7 +8282,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8292,7 +8292,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8302,7 +8302,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8312,7 +8312,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8322,7 +8322,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8332,7 +8332,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8342,7 +8342,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8352,7 +8352,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8362,7 +8362,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8372,7 +8372,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8382,7 +8382,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8392,7 +8392,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8402,7 +8402,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8412,7 +8412,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8422,7 +8422,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; @@ -8432,7 +8432,7 @@ [ a earl:Assertion; earl:assertedBy ; - earl:subject ; + earl:subject ; earl:test ; earl:result [ a earl:TestResult; From c8587b62f1a1a7b5598ac1181a9168d15c650975 Mon Sep 17 00:00:00 2001 From: Gregg Kellogg Date: Thu, 28 May 2020 16:26:04 -0700 Subject: [PATCH 3/8] Change doap:license to https://unlicense.org/. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a928801..5643c1c 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ This results in the following Turtle: , , ; - doap:license ; + doap:license ; doap:mailing-list ; doap:maintainer ; doap:name "RDF::Tabular"; @@ -166,7 +166,7 @@ It can also generate JSON output (not complete JSON-LD, but compatible with it), "http://usefulinc.com/ns/doap#name": "RDF::Tabular", "@type": "http://usefulinc.com/ns/doap#Project", "http://usefulinc.com/ns/doap#homepage": "http://ruby-rdf.github.com/rdf-tabular", - "http://usefulinc.com/ns/doap#license": "http://creativecommons.org/publicdomain/zero/1.0/", + "http://usefulinc.com/ns/doap#license": "https://unlicense.org/", "http://usefulinc.com/ns/doap#shortdesc": "Tabular Data RDF Reader and JSON serializer.", "http://usefulinc.com/ns/doap#description": "RDF::Tabular processes tabular data with metadata creating RDF or JSON output.", "http://usefulinc.com/ns/doap#created": "2015-01-05", From a9590edf3974fb57fecfe7b1e16e6941eeb1351d Mon Sep 17 00:00:00 2001 From: Gregg Kellogg Date: Sat, 30 May 2020 13:11:18 -0700 Subject: [PATCH 4/8] Update doap:license (again) to https://unlicense.org/1.0/. --- README.md | 4 ++-- etc/doap.csv | 2 +- etc/doap.ttl | 2 +- etc/earl.ttl | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5643c1c..f7aa6e2 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ This results in the following Turtle: , , ; - doap:license ; + doap:license ; doap:mailing-list ; doap:maintainer ; doap:name "RDF::Tabular"; @@ -166,7 +166,7 @@ It can also generate JSON output (not complete JSON-LD, but compatible with it), "http://usefulinc.com/ns/doap#name": "RDF::Tabular", "@type": "http://usefulinc.com/ns/doap#Project", "http://usefulinc.com/ns/doap#homepage": "http://ruby-rdf.github.com/rdf-tabular", - "http://usefulinc.com/ns/doap#license": "https://unlicense.org/", + "http://usefulinc.com/ns/doap#license": "https://unlicense.org/1.0/", "http://usefulinc.com/ns/doap#shortdesc": "Tabular Data RDF Reader and JSON serializer.", "http://usefulinc.com/ns/doap#description": "RDF::Tabular processes tabular data with metadata creating RDF or JSON output.", "http://usefulinc.com/ns/doap#created": "2015-01-05", diff --git a/etc/doap.csv b/etc/doap.csv index 5a8ca38..b102fd8 100644 --- a/etc/doap.csv +++ b/etc/doap.csv @@ -1,5 +1,5 @@ name,type,homepage,license,shortdesc,description,created,programming_language,implements,category,download_page,mailing_list,bug_database,blog,developer,maintainer,documenter,maker,dc_title,dc_description,dc_date,dc_creator,isPartOf -RDF::Tabular,http://usefulinc.com/ns/doap#Project,http://ruby-rdf.github.com/rdf-tabular,https://unlicense.org/,Tabular Data RDF Reader and JSON serializer.,RDF::Tabular processes tabular data with metadata creating RDF or JSON output.,1/5/2015,Ruby,http://www.w3.org/TR/tabular-data-model/,http://dbpedia.org/resource/Resource_Description_Framework,https://rubygems.org/gems/rdf-tabular,http://lists.w3.org/Archives/Public/public-rdf-ruby/,https://github.com/ruby-rdf/rdf-tabular/issues,http://greggkellogg.net/,http://greggkellogg.net/foaf#me,http://greggkellogg.net/foaf#me,http://greggkellogg.net/foaf#me,http://greggkellogg.net/foaf#me,RDF::Tabular,RDF::Tabular processes tabular data with metadata creating RDF or JSON output.,1/5/2015,http://greggkellogg.net/foaf#me,https://rubygems.org/gems/rdf +RDF::Tabular,http://usefulinc.com/ns/doap#Project,http://ruby-rdf.github.com/rdf-tabular,https://unlicense.org/1.0/,Tabular Data RDF Reader and JSON serializer.,RDF::Tabular processes tabular data with metadata creating RDF or JSON output.,1/5/2015,Ruby,http://www.w3.org/TR/tabular-data-model/,http://dbpedia.org/resource/Resource_Description_Framework,https://rubygems.org/gems/rdf-tabular,http://lists.w3.org/Archives/Public/public-rdf-ruby/,https://github.com/ruby-rdf/rdf-tabular/issues,http://greggkellogg.net/,http://greggkellogg.net/foaf#me,http://greggkellogg.net/foaf#me,http://greggkellogg.net/foaf#me,http://greggkellogg.net/foaf#me,RDF::Tabular,RDF::Tabular processes tabular data with metadata creating RDF or JSON output.,1/5/2015,http://greggkellogg.net/foaf#me,https://rubygems.org/gems/rdf ,http://www.w3.org/ns/earl#TestSubject,,,,,,,http://www.w3.org/TR/tabular-metadata/,http://dbpedia.org/resource/Ruby_(programming_language),,,,,,,,,,,,, ,http://www.w3.org/ns/earl#Software,,,,,,,http://www.w3.org/TR/csv2rdf/,,,,,,,,,,,,,, ,,,,,,,,http://www.w3.org/TR/csv2json/,,,,,,,,,,,,,, \ No newline at end of file diff --git a/etc/doap.ttl b/etc/doap.ttl index a585ae4..d55e8bb 100644 --- a/etc/doap.ttl +++ b/etc/doap.ttl @@ -10,7 +10,7 @@ <> a doap:Project, earl:TestSubject, earl:Software ; doap:name "RDF::Tabular" ; doap:homepage ; - doap:license ; + doap:license ; doap:shortdesc "Tabular Data RDF Reader and JSON serializer."@en ; doap:description "RDF::Tabular processes tabular data with metadata creating RDF or JSON output."@en ; doap:created "2015-01-05"^^xsd:date ; diff --git a/etc/earl.ttl b/etc/earl.ttl index 33e34d5..f7592f1 100644 --- a/etc/earl.ttl +++ b/etc/earl.ttl @@ -9,7 +9,7 @@ a doap:Project, earl:TestSubject, earl:Software ; doap:name "RDF::Tabular" ; doap:homepage ; - doap:license ; + doap:license ; doap:shortdesc "Tabular Data RDF Reader and JSON serializer."@en ; doap:description "RDF::Tabular processes tabular data with metadata creating RDF or JSON output."@en ; doap:created "2015-01-05"^^xsd:date ; From 56e6ee36b70c645b2d492058c2109876dcf1ff42 Mon Sep 17 00:00:00 2001 From: Gregg Kellogg Date: Sat, 8 Aug 2020 16:12:20 -0700 Subject: [PATCH 5/8] Fix some options as keywords warnings. --- lib/rdf/tabular/format.rb | 2 +- script/parse | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/rdf/tabular/format.rb b/lib/rdf/tabular/format.rb index 9d61e85..5863678 100644 --- a/lib/rdf/tabular/format.rb +++ b/lib/rdf/tabular/format.rb @@ -62,7 +62,7 @@ def self.cli_commands raise ArgumentError, "Outputting Tabular JSON only allowed when input format is tabular." unless opts[:format] == :tabular out = opts[:output] || $stdout out.set_encoding(Encoding::UTF_8) if RUBY_PLATFORM == "java" - RDF::CLI.parse(argv, opts) do |reader| + RDF::CLI.parse(argv, **opts) do |reader| out.puts reader.to_json end end diff --git a/script/parse b/script/parse index fa8f945..6521cfa 100755 --- a/script/parse +++ b/script/parse @@ -14,7 +14,7 @@ def run(input, **options) reader_class = RDF::Reader.for(options[:input_format].to_sym) raise "Reader not found for #{options[:input_format]}" unless reader_class - reader_class.send((input.is_a?(String) ? :open : :new), input, options[:parser_options]) do |reader| + reader_class.send((input.is_a?(String) ? :open : :new), input, **options[:parser_options]) do |reader| if [:json, :atd].include?(options[:output_format]) options[:output].puts reader.to_json(atd: options[:output_format] == :atd) else From 6bfe2b37e87cef5100b00978b59055fb0c38fdcf Mon Sep 17 00:00:00 2001 From: Gregg Kellogg Date: Sat, 8 Aug 2020 16:12:59 -0700 Subject: [PATCH 6/8] Add example using a virtual column with default values. --- README.md | 1 - examples/baskauf-virtual-column/countries.csv | 4 + .../countries.csv-metadata.json | 35 +++ examples/medicine-employees-to-write.csv | 2 + examples/vanderbot-metadata.json | 223 ++++++++++++++++++ spec/metadata_spec.rb | 83 +++++++ 6 files changed, 347 insertions(+), 1 deletion(-) create mode 100644 examples/baskauf-virtual-column/countries.csv create mode 100644 examples/baskauf-virtual-column/countries.csv-metadata.json create mode 100644 examples/medicine-employees-to-write.csv create mode 100644 examples/vanderbot-metadata.json diff --git a/README.md b/README.md index f7aa6e2..e452732 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,6 @@ [![Gem Version](https://badge.fury.io/rb/rdf-tabular.png)](https://badge.fury.io/rb/rdf-tabular) [![Build Status](https://secure.travis-ci.org/ruby-rdf/rdf-tabular.png?branch=master)](https://travis-ci.org/ruby-rdf/rdf-tabular) [![Coverage Status](https://coveralls.io/repos/ruby-rdf/rdf-tabular/badge.svg)](https://coveralls.io/r/ruby-rdf/rdf-tabular) -[![Dependency Status](https://gemnasium.com/ruby-rdf/rdf-tabular.png)](https://gemnasium.com/ruby-rdf/rdf-tabular) ## Features diff --git a/examples/baskauf-virtual-column/countries.csv b/examples/baskauf-virtual-column/countries.csv new file mode 100644 index 0000000..5aaae20 --- /dev/null +++ b/examples/baskauf-virtual-column/countries.csv @@ -0,0 +1,4 @@ +countryCode,latitude,longitude,name +AD,42.546245,1.601554,Andorra +AE,23.424076,53.847818,"United Arab Emirates" +AF,33.93911,67.709953,Afghanistan \ No newline at end of file diff --git a/examples/baskauf-virtual-column/countries.csv-metadata.json b/examples/baskauf-virtual-column/countries.csv-metadata.json new file mode 100644 index 0000000..e113fa0 --- /dev/null +++ b/examples/baskauf-virtual-column/countries.csv-metadata.json @@ -0,0 +1,35 @@ +{ + "@context": "http://www.w3.org/ns/csvw", + "url": "countries.csv", + "aboutUrl": "https://example.org/countries", + "@type": "Table", + "tableSchema": { + "@type": "Schema", + "columns": [{ + "name": "countryCode", + "titles": "countryCode", + "propertyUrl": "https://example.org/countries.csv#countryCode" + }, { + "name": "latitude", + "titles": "latitude", + "propertyUrl": "https://example.org/countries.csv#latitude" + }, { + "name": "longitude", + "titles": "longitude", + "propertyUrl": "https://example.org/countries.csv#longitude" + }, { + "name": "name", + "titles": "name", + "propertyUrl": "https://example.org/countries.csv#name" + }, { + "virtual": true, + "propertyUrl": "https://example.org/countries.csv#virt1", + "valueUrl": "https://example.org/countries.csv#virt1" + }, { + "virtual": true, + "propertyUrl": "https://example.org/countries.csv#virt2", + "default": "default", + "datatype": "string" + }] + } +} \ No newline at end of file diff --git a/examples/medicine-employees-to-write.csv b/examples/medicine-employees-to-write.csv new file mode 100644 index 0000000..28820a3 --- /dev/null +++ b/examples/medicine-employees-to-write.csv @@ -0,0 +1,2 @@ +department,wikidataId,name,labelEn,alias,description,orcidStatementUuid,orcid,orcidReferenceHash,orcidReferenceValue,employerStatementUuid,employer,employerReferenceHash,employerReferenceSourceUrl,employerReferenceRetrieved,affiliationStatementUuid,affiliation,affiliationReferenceHash,affiliationReferenceSourceUrl,affiliationReferenceRetrieved,instanceOfUuid,instanceOf,sexOrGenderUuid,sexOrGenderQId,gender,degree,category,wikidataStatus,role +medicine,Q88631361,Maria Blanca Piazuelo,Maria Blanca Piazuelo,"[""M. Blanca Piazuelo""]",physician,60AEDD59-C71F-467E-8A23-E6550C3070EC,0000-0002-0000-1324,7f81f24a4148728c2eb8e030140bb2808f105296,+2020-04-20T00:00:00Z,538599CD-1564-4E56-839A-1BAB9BAF74DC,Q29052,4820fb8bbf4060c54dd4f0f0745fa6ddc12cff80,https://wag.app.vanderbilt.edu//PublicPage/Faculty/PickLetter?letter=P,+2020-04-20T00:00:00Z,0BB1C55B-A784-4826-9EA6-10453CB6FBE9,Q89953931,4820fb8bbf4060c54dd4f0f0745fa6ddc12cff80,https://wag.app.vanderbilt.edu//PublicPage/Faculty/PickLetter?letter=P,+2020-04-20T00:00:00Z,388A4B21-1D84-412B-B501-89B7206FA52C,Q5,888850E6-14E5-462E-9A86-CBC983A2D8F7,Q6581072,f,M.D.,P,5,"[{""title"": ""Research Associate Professor"", ""department"": ""Medicine""}]" diff --git a/examples/vanderbot-metadata.json b/examples/vanderbot-metadata.json new file mode 100644 index 0000000..f32f879 --- /dev/null +++ b/examples/vanderbot-metadata.json @@ -0,0 +1,223 @@ +{ + "@type": "TableGroup", + "@context": "http://www.w3.org/ns/csvw", + "tables": [ + { + "url": "medicine-employees-to-write.csv", + "tableSchema": { + "columns": [ + { + "titles": "department", + "name": "department", + "datatype": "string", + "suppressOutput": true + }, + { + "titles": "wikidataId", + "name": "wikidataId", + "datatype": "string", + "suppressOutput": true + }, + { + "titles": "name", + "name": "name", + "datatype": "string", + "suppressOutput": true + }, + { + "titles": "labelEn", + "name": "labelEn", + "datatype": "string", + "aboutUrl": "http://www.wikidata.org/entity/{wikidataId}", + "propertyUrl": "rdfs:label", + "lang": "en" + }, + { + "titles": "alias", + "name": "alias", + "datatype": "string", + "aboutUrl": "http://www.wikidata.org/entity/{wikidataId}", + "propertyUrl": "skos:altLabel", + "lang": "en" + }, + { + "titles": "description", + "name": "description", + "datatype": "string", + "aboutUrl": "http://www.wikidata.org/entity/{wikidataId}", + "propertyUrl": "schema:description", + "lang": "en" + }, + { + "titles": "orcidStatementUuid", + "name": "orcidStatementUuid", + "datatype": "string", + "aboutUrl": "http://www.wikidata.org/entity/{wikidataId}", + "propertyUrl": "http://www.wikidata.org/prop/P496", + "valueUrl": "http://www.wikidata.org/entity/statement/{orcidStatementUuid}" + }, + { + "titles": "orcid", + "name": "orcid", + "datatype": "string", + "aboutUrl": "http://www.wikidata.org/entity/{wikidataId}", + "propertyUrl": "http://www.wikidata.org/prop/direct/P496" + }, + { + "titles": "orcidReferenceHash", + "name": "orcidReferenceHash", + "datatype": "string", + "aboutUrl": "http://www.wikidata.org/entity/statement/{orcidStatementUuid}", + "propertyUrl": "prov:wasDerivedFrom", + "valueUrl": "http://www.wikidata.org/reference/{orcidReferenceHash}" + }, + { + "titles": "orcidReferenceValue", + "name": "orcidReferenceValue", + "datatype": "date", + "aboutUrl": "http://www.wikidata.org/reference/{orcidReferenceHash}", + "propertyUrl": "http://www.wikidata.org/prop/reference/P813" + }, + { + "titles": "employerStatementUuid", + "name": "employerStatementUuid", + "datatype": "string", + "aboutUrl": "http://www.wikidata.org/entity/{wikidataId}", + "propertyUrl": "http://www.wikidata.org/prop/P108", + "valueUrl": "http://www.wikidata.org/entity/statement/{employerStatementUuid}" + }, + { + "titles": "employer", + "name": "employer", + "datatype": "string", + "aboutUrl": "http://www.wikidata.org/entity/{wikidataId}", + "propertyUrl": "http://www.wikidata.org/prop/direct/P108", + "valueUrl": "http://www.wikidata.org/entity/{employer}" + }, + { + "titles": "employerReferenceHash", + "name": "employerReferenceHash", + "datatype": "string", + "aboutUrl": "http://www.wikidata.org/entity/statement/{employerStatementUuid}", + "propertyUrl": "prov:wasDerivedFrom", + "valueUrl": "http://www.wikidata.org/reference/{employerReferenceHash}" + }, + { + "titles": "employerReferenceSourceUrl", + "name": "employerReferenceSourceUrl", + "datatype": "anyURI", + "aboutUrl": "http://www.wikidata.org/reference/{employerReferenceHash}", + "propertyUrl": "http://www.wikidata.org/prop/reference/P854" + }, + { + "titles": "employerReferenceRetrieved", + "name": "employerReferenceRetrieved", + "datatype": "date", + "aboutUrl": "http://www.wikidata.org/reference/{employerReferenceHash}", + "propertyUrl": "http://www.wikidata.org/prop/reference/P813" + }, + { + "titles": "affiliationStatementUuid", + "name": "affiliationStatementUuid", + "datatype": "string", + "aboutUrl": "http://www.wikidata.org/entity/{wikidataId}", + "propertyUrl": "http://www.wikidata.org/prop/P1416", + "valueUrl": "http://www.wikidata.org/entity/statement/{affiliationStatementUuid}" + }, + { + "titles": "affiliation", + "name": "affiliation", + "datatype": "string", + "aboutUrl": "http://www.wikidata.org/entity/{wikidataId}", + "propertyUrl": "http://www.wikidata.org/prop/direct/P1416", + "valueUrl": "http://www.wikidata.org/entity/{affiliation}" + }, + { + "titles": "affiliationReferenceHash", + "name": "affiliationReferenceHash", + "datatype": "string", + "aboutUrl": "http://www.wikidata.org/entity/statement/{affiliationStatementUuid}", + "propertyUrl": "prov:wasDerivedFrom", + "valueUrl": "http://www.wikidata.org/reference/{affiliationReferenceHash}" + }, + { + "titles": "affiliationReferenceSourceUrl", + "name": "affiliationReferenceSourceUrl", + "datatype": "anyURI", + "aboutUrl": "http://www.wikidata.org/reference/{affiliationReferenceHash}", + "propertyUrl": "http://www.wikidata.org/prop/reference/P854" + }, + { + "titles": "affiliationReferenceRetrieved", + "name": "affiliationReferenceRetrieved", + "datatype": "date", + "aboutUrl": "http://www.wikidata.org/reference/{affiliationReferenceHash}", + "propertyUrl": "http://www.wikidata.org/prop/reference/P813" + }, + { + "titles": "instanceOfUuid", + "name": "instanceOfUuid", + "datatype": "string", + "aboutUrl": "http://www.wikidata.org/entity/{wikidataId}", + "propertyUrl": "http://www.wikidata.org/prop/P31", + "valueUrl": "http://www.wikidata.org/entity/statement/{instanceOfUuid}" + }, + { + "titles": "instanceOf", + "name": "instanceOf", + "datatype": "string", + "aboutUrl": "http://www.wikidata.org/entity/{wikidataId}", + "propertyUrl": "http://www.wikidata.org/prop/direct/P31", + "valueUrl": "http://www.wikidata.org/entity/{instanceOf}" + }, + { + "titles": "sexOrGenderUuid", + "name": "sexOrGenderUuid", + "datatype": "string", + "aboutUrl": "http://www.wikidata.org/entity/{wikidataId}", + "propertyUrl": "http://www.wikidata.org/prop/P21", + "valueUrl": "http://www.wikidata.org/entity/statement/{sexOrGenderUuid}" + }, + { + "titles": "sexOrGenderQId", + "name": "sexOrGenderQId", + "datatype": "string", + "aboutUrl": "http://www.wikidata.org/entity/{wikidataId}", + "propertyUrl": "http://www.wikidata.org/prop/direct/P21", + "valueUrl": "http://www.wikidata.org/entity/{sexOrGenderQId}" + }, + { + "titles": "gender", + "name": "gender", + "datatype": "string", + "suppressOutput": true + }, + { + "titles": "degree", + "name": "degree", + "datatype": "string", + "suppressOutput": true + }, + { + "titles": "category", + "name": "category", + "datatype": "string", + "suppressOutput": true + }, + { + "titles": "wikidataStatus", + "name": "wikidataStatus", + "datatype": "string", + "suppressOutput": true + }, + { + "titles": "role", + "name": "role", + "datatype": "string", + "suppressOutput": true + } + ] + } + } + ] +} diff --git a/spec/metadata_spec.rb b/spec/metadata_spec.rb index fafa674..1aef633 100644 --- a/spec/metadata_spec.rb +++ b/spec/metadata_spec.rb @@ -1082,6 +1082,89 @@ end end end + + context "virtual columns" do + subject { + described_class.new(JSON.parse(%({ + "@context": "http://www.w3.org/ns/csvw", + "url": "https://example.org/countries.csv", + "aboutUrl": "https://example.org/countries", + "@type": "Table", + "tableSchema": { + "@type": "Schema", + "columns": [{ + "name": "countryCode", + "titles": "countryCode", + "propertyUrl": "https://example.org/countries.csv#countryCode" + }, { + "name": "latitude", + "titles": "latitude", + "propertyUrl": "https://example.org/countries.csv#latitude" + }, { + "name": "longitude", + "titles": "longitude", + "propertyUrl": "https://example.org/countries.csv#longitude" + }, { + "name": "name", + "titles": "name", + "propertyUrl": "https://example.org/countries.csv#name" + }, { + "virtual": true, + "propertyUrl": "https://example.org/countries.csv#virt1", + "valueUrl": "https://example.org/countries.csv#virt1" + }, { + "virtual": true, + "propertyUrl": "https://example.org/countries.csv#virt2", + "default": "default", + "datatype": "string" + }] + } + })), base: RDF::URI("http://example.org/base"), logger: logger) + } + let(:input) {RDF::Util::File.open_file("https://example.org/countries.csv")} + let(:rows) {subject.to_enum(:each_row, input).to_a} + + it "has expected aboutUrls" do + subject.each_row(input) do |row| + expect(row.values[0].aboutUrl).to eq "https://example.org/countries" + expect(row.values[1].aboutUrl).to eq "https://example.org/countries" + expect(row.values[2].aboutUrl).to eq "https://example.org/countries" + expect(row.values[3].aboutUrl).to eq "https://example.org/countries" + expect(row.values[4].aboutUrl).to eq "https://example.org/countries" + expect(row.values[5].aboutUrl).to eq "https://example.org/countries" + end + end + + it "has expected propertyUrls" do + subject.each_row(input) do |row| + expect(row.values[0].propertyUrl).to eq "https://example.org/countries.csv#countryCode" + expect(row.values[1].propertyUrl).to eq "https://example.org/countries.csv#latitude" + expect(row.values[2].propertyUrl).to eq "https://example.org/countries.csv#longitude" + expect(row.values[3].propertyUrl).to eq "https://example.org/countries.csv#name" + expect(row.values[4].propertyUrl).to eq "https://example.org/countries.csv#virt1" + expect(row.values[5].propertyUrl).to eq "https://example.org/countries.csv#virt2" + end + end + + it "has expected valueUrls" do + subject.each_row(input) do |row| + expect(row.values[0].valueUrl).to be_nil + expect(row.values[1].valueUrl).to be_nil + expect(row.values[2].valueUrl).to be_nil + expect(row.values[3].valueUrl).to be_nil + expect(row.values[4].valueUrl).to eq "https://example.org/countries.csv#virt1" + expect(row.values[5].valueUrl).to be_nil + end + end + + it "has expected values" do + rows = subject.to_enum(:each_row, input).to_a + expect(rows[0].values.map(&:to_s)).to produce(%w(AD 42.546245 1.601554 Andorra).push("", "default"), logger) + expect(rows[1].values.map(&:to_s)).to produce((%w(AE 23.424076 53.847818).push("United Arab Emirates", "", "default")), logger) + expect(rows[2].values.map(&:to_s)).to produce(%w(AF 33.93911 67.709953 Afghanistan).push("", "default"), logger) + end + end + end context "datatypes" do From 72b42a9bb7961145abe4bd8bf9b7d1c03bb08d63 Mon Sep 17 00:00:00 2001 From: Gregg Kellogg Date: Sat, 8 Aug 2020 17:39:18 -0700 Subject: [PATCH 7/8] Add `decode_uri` option to decode the result of URI template, which seem to encode extendec-character ranges. --- .../mzdov\303\251-t\305\231\303\255dy.csv" | 18 +++++ ...251-t\305\231\303\255dy.csv-metadata.json" | 81 +++++++++++++++++++ lib/rdf/tabular/metadata.rb | 11 ++- lib/rdf/tabular/reader.rb | 13 ++- script/parse | 2 + 5 files changed, 120 insertions(+), 5 deletions(-) create mode 100644 "examples/jakubklimek-iris/mzdov\303\251-t\305\231\303\255dy.csv" create mode 100644 "examples/jakubklimek-iris/mzdov\303\251-t\305\231\303\255dy.csv-metadata.json" diff --git "a/examples/jakubklimek-iris/mzdov\303\251-t\305\231\303\255dy.csv" "b/examples/jakubklimek-iris/mzdov\303\251-t\305\231\303\255dy.csv" new file mode 100644 index 0000000..237e7c3 --- /dev/null +++ "b/examples/jakubklimek-iris/mzdov\303\251-t\305\231\303\255dy.csv" @@ -0,0 +1,18 @@ +číselník,číselník_název_cs,číselník_název_en,položka,položka_kód,položka_název_cs,položka_název_en +https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy,Mzdové třídy MFF UK,Salary tariffs FMP CUNI,https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy/položky/AP1,AP1,AP1,AP1 +https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy,Mzdové třídy MFF UK,Salary tariffs FMP CUNI,https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy/položky/AP2,AP2,AP2,AP2 +https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy,Mzdové třídy MFF UK,Salary tariffs FMP CUNI,https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy/položky/AP3,AP3,AP3,AP3 +https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy,Mzdové třídy MFF UK,Salary tariffs FMP CUNI,https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy/položky/AP4,AP4,AP4,AP4 +https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy,Mzdové třídy MFF UK,Salary tariffs FMP CUNI,https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy/položky/L1,L1,L1,L1 +https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy,Mzdové třídy MFF UK,Salary tariffs FMP CUNI,https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy/položky/L2,L2,L2,L2 +https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy,Mzdové třídy MFF UK,Salary tariffs FMP CUNI,https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy/položky/VP1,VP1,VP1,VP1 +https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy,Mzdové třídy MFF UK,Salary tariffs FMP CUNI,https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy/položky/VP2,VP2,VP2,VP2 +https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy,Mzdové třídy MFF UK,Salary tariffs FMP CUNI,https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy/položky/VP3,VP3,VP3,VP3 +https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy,Mzdové třídy MFF UK,Salary tariffs FMP CUNI,https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy/položky/1,1,1,1 +https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy,Mzdové třídy MFF UK,Salary tariffs FMP CUNI,https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy/položky/2,2,2,2 +https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy,Mzdové třídy MFF UK,Salary tariffs FMP CUNI,https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy/položky/3,3,3,3 +https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy,Mzdové třídy MFF UK,Salary tariffs FMP CUNI,https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy/položky/4,4,4,4 +https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy,Mzdové třídy MFF UK,Salary tariffs FMP CUNI,https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy/položky/5,5,5,5 +https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy,Mzdové třídy MFF UK,Salary tariffs FMP CUNI,https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy/položky/6,6,6,6 +https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy,Mzdové třídy MFF UK,Salary tariffs FMP CUNI,https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy/položky/7,7,7,7 +https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy,Mzdové třídy MFF UK,Salary tariffs FMP CUNI,https://data.mff.cuni.cz/zdroj/číselníky/mzdové-třídy/položky/8,8,8,8 \ No newline at end of file diff --git "a/examples/jakubklimek-iris/mzdov\303\251-t\305\231\303\255dy.csv-metadata.json" "b/examples/jakubklimek-iris/mzdov\303\251-t\305\231\303\255dy.csv-metadata.json" new file mode 100644 index 0000000..5c030a2 --- /dev/null +++ "b/examples/jakubklimek-iris/mzdov\303\251-t\305\231\303\255dy.csv-metadata.json" @@ -0,0 +1,81 @@ +{ + "@id": "https://data.mff.cuni.cz/soubory/číselníky/mzdové-třídy.csv-metadata.json", + "@context": [ + "http://www.w3.org/ns/csvw", + { + "@language": "cs" + } + ], + "url": "mzdové-třídy.csv", + "tableSchema": { + "columns": [{ + "name": "ciselnik", + "titles": "číselník", + "dc:description": "IRI číselníku", + "aboutUrl": "{+ciselnik}", + "propertyUrl": "rdf:type", + "valueUrl": "skos:ConceptScheme", + "required": true, + "datatype": "anyURI" + }, { + "name": "ciselnik_nazev_cs", + "titles": "číselník_název_cs", + "dc:description": "Název číselníku v češtině", + "aboutUrl": "{+ciselnik}", + "propertyUrl": "skos:prefLabel", + "required": true, + "datatype": "string", + "lang": "cs" + }, { + "name": "ciselnik_nazev_en", + "titles": "číselník_název_en", + "dc:description": "Název číselníku v angličtině", + "aboutUrl": "{+ciselnik}", + "propertyUrl": "skos:prefLabel", + "required": true, + "datatype": "string", + "lang": "en" + }, { + "name": "polozka", + "titles": "položka", + "dc:description": "IRI položky", + "aboutUrl": "{+polozka}", + "propertyUrl": "rdf:type", + "valueUrl": "skos:Concept", + "required": true, + "datatype": "anyURI" + }, { + "name": "polozka_kod", + "titles": "položka_kód", + "dc:description": "Kód položky", + "aboutUrl": "{+polozka}", + "propertyUrl": "skos:notation", + "required": true, + "datatype": "string" + }, { + "name": "polozka_nazev_cs", + "titles": "položka_název_cs", + "dc:description": "Název položky v češtině", + "aboutUrl": "{+polozka}", + "propertyUrl": "skos:prefLabel", + "required": true, + "datatype": "string", + "lang": "cs" + }, { + "name": "polozka_nazev_en", + "titles": "položka_název_en", + "dc:description": "Název položky v angličtině", + "aboutUrl": "{+polozka}", + "propertyUrl": "skos:prefLabel", + "required": true, + "datatype": "string", + "lang": "en" + }, { + "aboutUrl": "{+polozka}", + "propertyUrl": "skos:inScheme", + "valueUrl": "{+ciselnik}", + "virtual": true + }], + "primaryKey": "polozka" + } +} \ No newline at end of file diff --git a/lib/rdf/tabular/metadata.rb b/lib/rdf/tabular/metadata.rb index 3d6221a..b4f8a04 100644 --- a/lib/rdf/tabular/metadata.rb +++ b/lib/rdf/tabular/metadata.rb @@ -209,7 +209,9 @@ def self.for_input(input, **options) log_debug("for_input", **options) {"templates: #{templates.map(&:to_s).inspect}"} locs = templates.map do |template| t = Addressable::Template.new(template) - RDF::URI(base).join(t.expand(url: base).to_s) + mapped = t.expand(url: base).to_s + mapped = RDF::URI.decode(mapped) if options[:decode_uri] + RDF::URI(base).join(mapped) end log_debug("for_input", **options) {"locs: #{locs.map(&:to_s).inspect}"} @@ -314,6 +316,8 @@ def self.new(input, **options) # Context used for this metadata. Taken from input if not provided # @option options [RDF::URI] :base # The Base URL to use when expanding the document. This overrides the value of `input` if it is a URL. If not specified and `input` is not an URL, the base URL defaults to the current document URL if in a browser context, or the empty string if there is no document context. + # @option options [Boolean] :decode_uri + # Decode %-encodings in the result of a URI Template operation. # @option options [Boolean] :normalize normalize the object # @option options [Boolean] :validate Strict metadata validation # @raise [Error] @@ -1947,13 +1951,14 @@ def base; object[:base]; end class Row # Class for returning values Cell = Struct.new(:table, :column, :row, :stringValue, :aboutUrl, :propertyUrl, :valueUrl, :value, :errors) do - def set_urls(mapped_values) + def set_urls(mapped_values, decode_uri) %w(aboutUrl propertyUrl valueUrl).each do |prop| # If the cell value is nil, and it is not a virtual column next if prop == "valueUrl" && value.nil? && !column.virtual if v = column.send(prop.to_sym) t = Addressable::Template.new(v) mapped = t.expand(mapped_values).to_s + mapped = RDF::URI.decode(mapped) if decode_uri # FIXME: don't expand here, do it in CSV2RDF url = row.context.expand_iri(mapped, documentRelative: true) self.send("#{prop}=".to_sym, url) @@ -2114,7 +2119,7 @@ def initialize(row, metadata, number, source_number, **options) "_column" => cell.column.number, "_sourceColumn" => cell.column.sourceNumber ) - cell.set_urls(mapped_values) + cell.set_urls(mapped_values, options[:decode_uri]) end end diff --git a/lib/rdf/tabular/reader.rb b/lib/rdf/tabular/reader.rb index 0009252..50ffa1c 100644 --- a/lib/rdf/tabular/reader.rb +++ b/lib/rdf/tabular/reader.rb @@ -43,6 +43,13 @@ def self.options control: :checkbox, on: ["--no-prov"], description: "do not output optional provenance information.") {true}, + RDF::CLI::Option.new( + symbol: :decode_uri, + datatype: TrueClass, + control: :checkbox, + on: ["--decode-uri"], + description: "decode %-encodings in the result of a URI Template operation." + ) ] end @@ -54,11 +61,13 @@ def self.options # or an Array used as an internalized array of arrays # @param [Hash{Symbol => Object}] options # any additional options (see `RDF::Reader#initialize`) + # @option options [Boolean] :decode_uri + # Decode %-encodings in the result of a URI Template operation. + # @option options [Array] :fks_referencing_table + # When called with Table metadata, a list of the foreign keys referencing this table # @option options [Metadata, Hash, String, RDF::URI] :metadata user supplied metadata, merged on top of extracted metadata. If provided as a URL, Metadata is loade from that location # @option options [Boolean] :minimal includes only the information gleaned from the cells of the tabular data # @option options [Boolean] :noProv do not output optional provenance information - # @option optinons [Array] :fks_referencing_table - # When called with Table metadata, a list of the foreign keys referencing this table # @yield [reader] `self` # @yieldparam [RDF::Reader] reader # @yieldreturn [void] ignored diff --git a/script/parse b/script/parse index 6521cfa..86bada2 100755 --- a/script/parse +++ b/script/parse @@ -55,6 +55,7 @@ input = nil opts = GetoptLong.new( ["--dbg", GetoptLong::NO_ARGUMENT], ["--execute", "-e", GetoptLong::REQUIRED_ARGUMENT], + ["--decode-uri", GetoptLong::NO_ARGUMENT], ["--format", GetoptLong::REQUIRED_ARGUMENT], ["--minimal", GetoptLong::NO_ARGUMENT], ["--output", "-o", GetoptLong::REQUIRED_ARGUMENT], @@ -66,6 +67,7 @@ opts = GetoptLong.new( opts.each do |opt, arg| case opt when '--dbg' then logger.level = Logger::DEBUG + when "--decode-uri" then parser_options[:decode_uri] = true when '--execute' then input = arg when '--format' then options[:output_format] = arg.to_sym when '--minimal' then parser_options[:minimal] = true From 6943d558ac96e3404ffe0edfc374a24bd1b1e181 Mon Sep 17 00:00:00 2001 From: Gregg Kellogg Date: Sat, 8 Aug 2020 17:41:48 -0700 Subject: [PATCH 8/8] Version 3.1.1. --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index fd2a018..94ff29c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.1.0 +3.1.1