From 13d4169b66ac50fa8580b81e3e732c643d6c9ad0 Mon Sep 17 00:00:00 2001 From: Anusha Ranganathan Date: Fri, 18 Dec 2015 20:28:29 +0000 Subject: [PATCH 01/12] Added new method in annotations to extract all resources - annotations and transcriptions --- app/models/concerns/annotation_data.rb | 27 ++++++---- .../annotation_records/annotation_fixtures.rb | 14 +++-- spec/models/concerns/annotation_data_spec.rb | 51 ++++++++++++++++--- 3 files changed, 69 insertions(+), 23 deletions(-) diff --git a/app/models/concerns/annotation_data.rb b/app/models/concerns/annotation_data.rb index a58aa29..690460d 100644 --- a/app/models/concerns/annotation_data.rb +++ b/app/models/concerns/annotation_data.rb @@ -2,12 +2,9 @@ module AnnotationData include JsonReader extend ActiveSupport::Concern - # attr_accessor :annotation_url, :annotation_list - def read_annotation(url = nil) return nil unless url # self[:annotation_url] @annotation_list = JsonReader::Reader.new.from_url(url) - # self[:annotation_list] = JsonReader::Reader.new.from_str(self[:annotation_url]) end def motivation_for_annotations @@ -18,14 +15,21 @@ def motivation_for_transcriptions 'sc:painting' end + def resources(annotation_list = nil) + return [] unless annotation_list + return [] unless annotation_list.key? 'resources' + annotation_list['resources'] + end + def annotations(annotation_list = nil) # the motivation for annotations will be: "oa:commenting" # return [] unless self[:annotation_url] # self.read_annotation unless self[:annotation_list] # return [] unless self[:annotation_list] # return self[:annotation_list][:resources].select {|anno| anno["motivation"] == "oa:commenting" } - return [] unless annotation_list - annotation_list['resources'].select { |anno| anno['motivation'] == motivation_for_annotations } + al = resources(annotation_list) + return [] unless al + al.select { |anno| anno['motivation'] == motivation_for_annotations } end def transcriptions(annotation_list = nil) @@ -34,8 +38,9 @@ def transcriptions(annotation_list = nil) # self.read_annotation unless self[:annotation_list] # return [] unless self[:annotation_list] # return self[:annotation_list][:resources].select {|anno| anno["motivation"] == "sc:painting" } - return [] unless annotation_list - annotation_list['resources'].select { |anno| anno['motivation'] == motivation_for_transcriptions } + al = resources(annotation_list) + return [] unless al + al.select { |anno| anno['motivation'] == motivation_for_transcriptions } end def map_annotation(annotation = nil) @@ -61,17 +66,17 @@ def map_annotation(annotation = nil) def annotation_to_solr(data = {}) # data.keys = [:annotation, :manuscript, :folio, :url] - return {} unless data['annotation'] + return {} unless data.key?('annotation') || data['annotation'] anno = map_annotation(data['annotation']) return {} unless anno['id'] solr_doc = {} solr_doc['id'] = anno['id'] solr_doc['druid'] = self['druid'] - solr_doc['url_sfx'] = data['url'] solr_doc['manifest_urls'] = self['iiif_manifest'] solr_doc['collection'] = self['collection'] - solr_doc['folio'] = data['folio'] - solr_doc['manuscript_search'] = data['manuscript'] + solr_doc['url_sfx'] = data['url'] if data.key?('url') + solr_doc['folio'] = data['folio'] if data.key?('folio') + solr_doc['manuscript_search'] = data['manuscript'] if data.key?('manuscript') solr_doc['model'] = anno['model'] solr_doc['motivation'] = anno['motivation'] solr_doc['target_url'] = anno['target_url'] diff --git a/spec/fixtures/annotation_records/annotation_fixtures.rb b/spec/fixtures/annotation_records/annotation_fixtures.rb index 4ac7681..e41df18 100644 --- a/spec/fixtures/annotation_records/annotation_fixtures.rb +++ b/spec/fixtures/annotation_records/annotation_fixtures.rb @@ -282,18 +282,18 @@ def annotation_001 def annotation_002 { - '@id' => '_:N43deaea09a5345379218db8cb72600c3', + '@id' => '_:Nec72601c72094655ae7b0df521dd3e7f', '@type' => 'oa:Annotation', 'motivation' => 'sc:painting', 'resource' => { - '@id' => '7377e5fe51c46454bb01b62a817a4d42', + '@id' => '61574db3e19725509b692c3a099e0bc7', '@type' => 'cnt:ContentAsText', 'format' => 'text/plain', - 'chars' => 'Erant aut[em] qui manducaverant', + 'chars' => '-sei et ceper[un]t conquirere cu[m] eo que-', 'language' => 'fle' }, - 'on' => 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,450,1017,166' + 'on' => 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,1274,1017,153' } end @@ -306,6 +306,12 @@ def solr_data_all } end + def solr_data_anno + { + 'annotation' => annotation_002 + } + end + def solr_data_no_id { 'annotation' => annotation_001.except('@id'), diff --git a/spec/models/concerns/annotation_data_spec.rb b/spec/models/concerns/annotation_data_spec.rb index 1ac8ef5..db9362c 100644 --- a/spec/models/concerns/annotation_data_spec.rb +++ b/spec/models/concerns/annotation_data_spec.rb @@ -65,6 +65,21 @@ class AnnotationDataTestClass end end + describe '#resources' do + it 'should be an Array' do + expect(document.resources(annotation_list)).to be_a Array + expect(SolrDocument.new.resources).to be_a Array + end + + it 'should be empty if no annotation url' do + expect(SolrDocument.new.resources).to be_empty + end + + it 'should have 19 resources' do + expect(document.resources(annotation_list).length).to eq 19 + end + end + describe '#annotations' do it 'should be an Array' do expect(document.annotations(annotation_list)).to be_a Array @@ -100,8 +115,10 @@ class AnnotationDataTestClass end describe '#map_annotation' do + let(:anno_doc_1) { document.map_annotation(annotation_001) } + let(:anno_doc_2) { document.map_annotation(annotation_002) } it 'should be an Hash' do - expect(document.map_annotation(annotation_001)).to be_a Hash + expect(anno_doc_1).to be_a Hash expect(SolrDocument.new.map_annotation).to be_a Hash end @@ -110,24 +127,25 @@ class AnnotationDataTestClass end it 'should be empty if no annotation url' do - expect(document.map_annotation(annotation_001)).not_to be_empty + expect(anno_doc_1).not_to be_empty end it 'should have the keys id, motivation, target_type, target_url, body_type, body_format, body_chars and body_language, model' do - expect(document.map_annotation(annotation_001).keys).to eq(%w(id target_type motivation target_url body_type body_format body_chars body_language model)) + expect(anno_doc_1.keys).to eq(%w(id target_type motivation target_url body_type body_format body_chars body_language model)) end it 'should be human language and not iso code' do - expect(document.map_annotation(annotation_001)['body_language']).to eq 'Latin' + expect(anno_doc_1['body_language']).to eq 'Latin' end it 'should be iso code for language if not in list' do - expect(document.map_annotation(annotation_002)['body_language']).to eq 'fle' + expect(anno_doc_2['body_language']).to eq 'fle' end end describe '#annotation_to_solr' do let(:solr_doc_all) { document_with_id.annotation_to_solr(solr_data_all) } + let(:solr_doc_anno) { document_with_id.annotation_to_solr(solr_data_anno) } let(:solr_doc_no_id) { document.annotation_to_solr(solr_data_no_id) } let(:solr_doc_no_anno) { document.annotation_to_solr(solr_data_no_anno) } @@ -137,6 +155,7 @@ class AnnotationDataTestClass it 'should return a Hash' do expect(solr_doc_all).to be_a Hash + expect(solr_doc_anno).to be_a Hash expect(solr_doc_no_id).to be_a Hash expect(solr_doc_no_anno).to be_a Hash end @@ -151,46 +170,62 @@ class AnnotationDataTestClass it 'should not be a empty hash with id' do expect(solr_doc_all).to_not eq({}) + expect(solr_doc_anno).to_not eq({}) end it 'should have an id' do expect(solr_doc_all).to have_key('id') expect(solr_doc_all['id']).to eq('_:N43deaea09a5345379218db8cb72600c3') + expect(solr_doc_anno).to have_key('id') + expect(solr_doc_anno['id']).to eq('_:Nec72601c72094655ae7b0df521dd3e7f') end it 'should have an druid' do expect(solr_doc_all).to have_key('druid') expect(solr_doc_all['druid']).to eq('kq131cs7229') + expect(solr_doc_anno['druid']).to eq('kq131cs7229') end it 'should have a body chars' do expect(solr_doc_all).to have_key('body_chars_search') expect(solr_doc_all['body_chars_search']).to eq('Erant aut[em] qui manducaverant') + expect(solr_doc_anno['body_chars_search']).to eq('-sei et ceper[un]t conquirere cu[m] eo que-') end - it 'should belong to the parker collection' do + it 'should have collection' do expect(solr_doc_all).to have_key('collection') expect(solr_doc_all['collection']).to eq('Parker collection') + expect(solr_doc_anno['collection']).to eq('Parker collection') end it 'should have manifest url' do expect(solr_doc_all).to have_key('manifest_urls') expect(solr_doc_all['manifest_urls']).to eq('http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/manifest.json') + expect(solr_doc_anno['manifest_urls']).to eq('http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/manifest.json') + end + + it 'should have manuscript if defined' do + expect(solr_doc_all).to have_key('manuscript_search') + expect(solr_doc_all['manuscript_search']).to eq('Manuscript fragment of the Gospels and Canonical Epistles, glossed') + expect(solr_doc_anno).not_to have_key('manuscript_search') end - it 'should have url' do + it 'should have url if defined' do expect(solr_doc_all).to have_key('url_sfx') expect(solr_doc_all['url_sfx']).to eq('http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f8r.json') + expect(solr_doc_anno).not_to have_key('url_sfx') end - it 'should have folio' do + it 'should have folio if defined' do expect(solr_doc_all).to have_key('folio') expect(solr_doc_all['folio']).to eq('f. 8r') + expect(solr_doc_anno).not_to have_key('folio') end it 'should have model Transcription' do expect(solr_doc_all).to have_key('model') expect(solr_doc_all['model']).to eq('Transcription') + expect(solr_doc_anno['model']).to eq('Transcription') end end end From c9ee61c9809ea14e06e22d2ba941b70f5bd201e3 Mon Sep 17 00:00:00 2001 From: Anusha Ranganathan Date: Sat, 19 Dec 2015 14:34:37 +0000 Subject: [PATCH 02/12] Using webmock stubs for all http requests in spec --- Gemfile | 4 + Gemfile.lock | 10 + ...nnotation-001.json => annotation_001.json} | 0 .../annotation_records/annotation_fixtures.rb | 257 +- .../iiif_manifest_records/manifest_001.json | 1210 + .../iiif_manifest_records/manifest_002.json | 1254 + .../iiif_manifest_records/manifest_003.json | 22023 ++++++++++++++++ .../iiif_manifest_records/manifest_004.json | 1 + .../iiif_manifest_records/mods_001.xml | 75 + .../iiif_manifest_records/mods_004.xml | 42 + spec/models/concerns/annotation_data_spec.rb | 62 +- .../concerns/iiif_manifest_data_spec.rb | 24 +- spec/models/concerns/json_reader_spec.rb | 26 +- spec/spec_helper.rb | 37 +- 14 files changed, 24694 insertions(+), 331 deletions(-) rename spec/fixtures/annotation_records/{annotation-001.json => annotation_001.json} (100%) create mode 100644 spec/fixtures/iiif_manifest_records/manifest_001.json create mode 100644 spec/fixtures/iiif_manifest_records/manifest_002.json create mode 100644 spec/fixtures/iiif_manifest_records/manifest_003.json create mode 100644 spec/fixtures/iiif_manifest_records/manifest_004.json create mode 100644 spec/fixtures/iiif_manifest_records/mods_001.xml create mode 100644 spec/fixtures/iiif_manifest_records/mods_004.xml diff --git a/Gemfile b/Gemfile index 2d541a1..e3e19bb 100644 --- a/Gemfile +++ b/Gemfile @@ -48,6 +48,10 @@ group :development do gem 'spring' end +group :test do + gem 'webmock' +end + gem 'blacklight', '>= 5.3.0' gem 'jettywrapper', '>= 2.0' gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw] diff --git a/Gemfile.lock b/Gemfile.lock index 252f4a9..d38298e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -36,6 +36,7 @@ GEM minitest (~> 5.1) thread_safe (~> 0.3, >= 0.3.4) tzinfo (~> 1.1) + addressable (2.4.0) arel (6.0.3) autoprefixer-rails (6.1.0.1) execjs @@ -110,6 +111,8 @@ GEM term-ansicolor (~> 1.3) thor (~> 0.19.1) tins (~> 1.6.0) + crack (0.4.3) + safe_yaml (~> 1.0.0) debug_inspector (0.0.2) deep_merge (1.0.1) deprecation (0.2.2) @@ -134,6 +137,7 @@ GEM ffi (1.9.10) globalid (0.3.6) activesupport (>= 4.1.0) + hashdiff (0.2.3) http-cookie (1.0.2) domain_name (~> 0.5) i18n (0.7.0) @@ -248,6 +252,7 @@ GEM rspec-expectations (~> 2.14.0) rspec-mocks (~> 2.14.0) rubyzip (1.1.7) + safe_yaml (1.0.4) sass (3.4.19) sass-rails (5.0.4) railties (>= 4.0.0, < 5.0) @@ -304,6 +309,10 @@ GEM binding_of_caller (>= 0.7.2) railties (>= 4.0) sprockets-rails (>= 2.0, < 4.0) + webmock (1.22.3) + addressable (>= 2.3.6) + crack (>= 0.3.2) + hashdiff websocket-driver (0.6.3) websocket-extensions (>= 0.1.0) websocket-extensions (0.1.2) @@ -346,6 +355,7 @@ DEPENDENCIES tzinfo-data uglifier (>= 1.3.0) web-console (~> 2.0) + webmock BUNDLED WITH 1.10.6 diff --git a/spec/fixtures/annotation_records/annotation-001.json b/spec/fixtures/annotation_records/annotation_001.json similarity index 100% rename from spec/fixtures/annotation_records/annotation-001.json rename to spec/fixtures/annotation_records/annotation_001.json diff --git a/spec/fixtures/annotation_records/annotation_fixtures.rb b/spec/fixtures/annotation_records/annotation_fixtures.rb index e41df18..2ca9457 100644 --- a/spec/fixtures/annotation_records/annotation_fixtures.rb +++ b/spec/fixtures/annotation_records/annotation_fixtures.rb @@ -5,262 +5,7 @@ def annotation_url_001 end def annotation_list_001 - ' - { - "@context": "http://www.shared-canvas.org/ns/context.json", - "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f8r.json", - "@type": "sc:AnnotationList", - "resources": [ - { - "@id": "_:N43deaea09a5345379218db8cb72600c3", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "7377e5fe51c46454bb01b62a817a4d42", - "@type": "cnt:ContentAsText", - "format": "text/plain", - "chars": "Erant aut[em] qui manducaverant", - "language": "lat" - }, - "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,450,1017,166" - }, - { - "@id": "_:N14eeb4370547431db7bb7fc075e43210", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "c15b3c62f8532a37ca4ba1c9deb84d6a", - "@type": "cnt:ContentAsText", - "format": "text/plain", - "chars": "quasi quatuor milia hominu[m] et", - "language": "lat" - }, - "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,616,1017,153" - }, - { - "@id": "_:N1a08bd845f484bd9960cf323949e8f6e", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "bd8f9e22c2d2d6691e78f6d02143a80d", - "@type": "cnt:ContentAsText", - "format": "text/plain", - "chars": "et dimisit eos Et stati[m] ascendens na-", - "language": "lat" - }, - "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,769,1017,162" - }, - { - "@id": "_:N82e5366197f24bc1ae583248d73e36fc", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "d2771941ce394de6aea13779d4f058ea", - "@type": "cnt:ContentAsText", - "format": "text/plain", - "chars": "-ve[m] cu[m] discip[u]lis suis venit in par-", - "language": "lat" - }, - "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,931,1017,180" - }, - { - "@id": "_:N8734944c5867422dbb2e05ce5a9386af", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "deabaa77448a61c561836d1fb064f885", - "@type": "cnt:ContentAsText", - "format": "text/plain", - "chars": "-tes dalmanutha [Et] exier[un]t phari-", - "language": "lat" - }, - "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,1111,1017,162" - }, - { - "@id": "_:Nec72601c72094655ae7b0df521dd3e7f", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "61574db3e19725509b692c3a099e0bc7", - "@type": "cnt:ContentAsText", - "format": "text/plain", - "chars": "-sei et ceper[un]t conquirere cu[m] eo que-", - "language": "lat" - }, - "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,1274,1017,153" - }, - { - "@id": "_:N689608cc1b53445c8cbc42ffb3929a6d", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "8f42470a851d3b5c1af46b8e7477f861", - "@type": "cnt:ContentAsText", - "format": "text/plain", - "chars": "-rentes ab illo signu[m] de celo te[m]pta[n]tes", - "language": "lat" - }, - "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,1427,1017,175" - }, - { - "@id": "_:Nad1e54bc8428459b804639919f670908", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "677b8baf5f31cc035202320f74a59827", - "@type": "cnt:ContentAsText", - "format": "text/plain", - "chars": "eu[m] [Et] ingemiscens sp[irit]u ait Q[ui]d g[e]n[er]a-", - "language": "lat" - }, - "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,1602,1017,139" - }, - { - "@id": "_:N51325f819f1e4bac8558b71419ae29a3", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "e91f46cf59fac81d268322d7af89378b", - "@type": "cnt:ContentAsText", - "format": "text/plain", - "chars": "-tio ista signu[m] querit Amen dico", - "language": "lat" - }, - "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,1742,1017,153" - }, - { - "@id": "_:Ne1d69f7bca434ef583a1d3711237cbb7", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "654a116a63555dfcef929d207c5cc85d", - "@type": "cnt:ContentAsText", - "format": "text/plain", - "chars": "vob[is] si dabit[ur] g[e]n[er]ationi isti signum", - "language": "lat" - }, - "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,1895,1017,162" - }, - { - "@id": "_:N34ba429a91c142f6b19a89b28780bff7", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "b2c3fdb829625d9edad520358ba24e2b", - "@type": "cnt:ContentAsText", - "format": "text/plain", - "chars": "Et dimittens eos ascendens it[eru]m na-", - "language": "lat" - }, - "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,2057,1017,153" - }, - { - "@id": "_:N458e8ba2c83e48ef9f8039209aa28013", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "d75d079522a83fd9c29ffdc54e0c8433", - "@type": "cnt:ContentAsText", - "format": "text/plain", - "chars": "-ve[m] abiit t[ra]ns fredu[m] et obliti s[un]t sume-", - "language": "lat" - }, - "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,2210,1017,148" - }, - { - "@id": "_:Ne96dfb3e84ee42c39a24cad1ba1c75ec", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "ad687791dc66c33d889c65d28a919406", - "@type": "cnt:ContentAsText", - "format": "text/plain", - "chars": "-re panes et nisi unu[m] pane[m] secu[m] no[n]", - "language": "lat" - }, - "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,2359,1017,175" - }, - { - "@id": "_:N8b42c7d2e7de4cf38a37ab0da9893059", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "ef1d64bc4e7fb0cb227a9dab4190116b", - "@type": "cnt:ContentAsText", - "format": "text/plain", - "chars": "habebant in navi Et p[re]cipiebat", - "language": "lat" - }, - "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,2534,1017,139" - }, - { - "@id": "_:N273697814e554ba3a26d0c49bf67daed", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "91c038e14ba8af0e9b5df0e98b830b2e", - "@type": "cnt:ContentAsText", - "format": "text/plain", - "chars": "eis dicens Videte cavete a ferme[n]-", - "language": "lat" - }, - "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,2674,1017,189" - }, - { - "@id": "_:N3aaf92430d484bf1b2869b333536395a", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "149e313d4be2f9ed97d51ba1a71a36c6", - "@type": "cnt:ContentAsText", - "format": "text/plain", - "chars": "-to phariseo[rum] et fermento herodis", - "language": "lat" - }, - "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,2863,1017,135" - }, - { - "@id": "_:N9dddfad68e9c47238f2827260742ba33", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "0ced5cdb34ba7d00348e25e435da7824", - "@type": "cnt:ContentAsText", - "format": "text/plain", - "chars": "Et cogitabant ad alt[er]utru[m] dicentes", - "language": "lat" - }, - "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,2998,1017,162" - }, - { - "@id": "_:Nc9444cda88ad42ae888a42e15d17f83b", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "aff9de356f29c386cd506b86d2798997", - "@type": "cnt:ContentAsText", - "format": "text/plain", - "chars": "Quia panes no[n] h[abe]m[u]s quo cognito", - "language": "lat" - }, - "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,3160,1017,184" - }, - { - "@id": "_:Nbf9f14138d3d4046b5bbeb6989f1a2d7", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "ed3bc7f8a8205ef288978bee5cc80410", - "@type": "cnt:ContentAsText", - "format": "text/plain", - "chars": "[Jesus] ait illis Quid cogitatis q[uia] pane", - "language": "lat" - }, - "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,3344,1017,135" - } - ] -} -' + File.open("#{::Rails.root}/spec/fixtures/annotation_records/annotation_001.json").read end def annotation_001 diff --git a/spec/fixtures/iiif_manifest_records/manifest_001.json b/spec/fixtures/iiif_manifest_records/manifest_001.json new file mode 100644 index 0000000..305d203 --- /dev/null +++ b/spec/fixtures/iiif_manifest_records/manifest_001.json @@ -0,0 +1,1210 @@ +{ + "@context": "http://www.shared-canvas.org/ns/context.json", + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/manifest.json", + "@type": "sc:Manifest", + "label": "Manuscript fragment of the Gospels and Canonical Epistles, glossed", + "description": "From a manuscript which comprised the third and fourth Gospels and The Canonical Epistles, glossed, in 105 leaves. The Gloss on St. John was composed in the eleventh century by Anselm of Laon (d. 1117) and the Gloss on the Canonical Epistles probably dates from about 1100 and may be the work of Anselm or his brother Ralph (d. 1133).\", \"Purchased, 1985.", + "attribution": "Provided by the Stanford University Libraries", + "seeAlso": { + "@id": "http://purl.stanford.edu/kq131cs7229.mods", + "dcterms:format": "application/mods+xml" + }, + "within": "http://dms-data.stanford.edu/data/manifests/Stanford/", + "sequences": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/normal", + "@type": "sc:Sequence", + "label": "Current page order", + "canvases": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-3", + "@type": "sc:Canvas", + "label": "f. 8r", + "height": "4502", + "width": "3016", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-3", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/sulmss_misc305_008r_SM", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4502", + "width": "3016", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fsulmss_misc305_008r_SM", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-3" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f8r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-4", + "@type": "sc:Canvas", + "label": "f. 8v", + "height": "5467", + "width": "3728", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-4", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0006", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5467", + "width": "3728", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0006", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-4" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f8v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-5", + "@type": "sc:Canvas", + "label": "f. 9r", + "height": "5551", + "width": "3883", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-5", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0019", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5551", + "width": "3883", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0019", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-5" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f9r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-6", + "@type": "sc:Canvas", + "label": "f. 9v", + "height": "5503", + "width": "3943", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-6", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0020", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5503", + "width": "3943", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0020", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-6" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f9v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-7", + "@type": "sc:Canvas", + "label": "f. 11r", + "height": "5503", + "width": "3943", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-7", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0011", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5503", + "width": "3943", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0011", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-7" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f11r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-8", + "@type": "sc:Canvas", + "label": "f. 11v", + "height": "5515", + "width": "3871", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-8", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0012", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5515", + "width": "3871", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0012", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-8" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f11v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-9", + "@type": "sc:Canvas", + "label": "f. 13r", + "height": "5431", + "width": "3990", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-9", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0008", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5431", + "width": "3990", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0008", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-9" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f13r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-10", + "@type": "sc:Canvas", + "label": "f. 13v", + "height": "5467", + "width": "4063", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-10", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0007", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5467", + "width": "4063", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0007", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-10" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f13v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-11", + "@type": "sc:Canvas", + "label": "f. 14r", + "height": "5503", + "width": "3907", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-11", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0010", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5503", + "width": "3907", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0010", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-11" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f14r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-12", + "@type": "sc:Canvas", + "label": "f. 14v", + "height": "5491", + "width": "3859", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-12", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0009", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5491", + "width": "3859", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0009", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-12" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f14v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-21", + "@type": "sc:Canvas", + "label": "f. 15r", + "height": "3840", + "width": "2767", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-21", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0035", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "3840", + "width": "2767", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0035", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-21" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f15r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-22", + "@type": "sc:Canvas", + "label": "f. 15v", + "height": "3840", + "width": "2767", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-22", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0036", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "3840", + "width": "2767", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0036", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-22" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f15v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-13", + "@type": "sc:Canvas", + "label": "f. 16r", + "height": "6573", + "width": "4344", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-13", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0002", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6573", + "width": "4344", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0002", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-13" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f16r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-14", + "@type": "sc:Canvas", + "label": "f. 16v", + "height": "5888", + "width": "4016", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-14", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0003", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5888", + "width": "4016", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0003", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-14" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f16v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-15", + "@type": "sc:Canvas", + "label": "f. 16bisr", + "height": "5842", + "width": "4085", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-15", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0004", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5842", + "width": "4085", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0004", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-15" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f16bisr.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-16", + "@type": "sc:Canvas", + "label": "f. 16bisv", + "height": "5888", + "width": "3925", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-16", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/sulmss_misc305_016bv_SM", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5888", + "width": "3925", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fsulmss_misc305_016bv_SM", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-16" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f16bisv.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-17", + "@type": "sc:Canvas", + "label": "f. 17r", + "height": "5611", + "width": "3907", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-17", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0024", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5611", + "width": "3907", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0024", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-17" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f17r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-18", + "@type": "sc:Canvas", + "label": "f. 17v", + "height": "5599", + "width": "3859", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-18", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0023", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5599", + "width": "3859", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0023", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-18" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f17v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-19", + "@type": "sc:Canvas", + "label": "f. 18r", + "height": "5491", + "width": "3823", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-19", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0017", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5491", + "width": "3823", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0017", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-19" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f18r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-20", + "@type": "sc:Canvas", + "label": "f. 18v", + "height": "5611", + "width": "3859", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-20", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0018", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5611", + "width": "3859", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0018", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-20" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f18v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-23", + "@type": "sc:Canvas", + "label": "f. 21r", + "height": "5504", + "width": "3884", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-23", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0030", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5504", + "width": "3884", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0030", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-23" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f21r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-24", + "@type": "sc:Canvas", + "label": "f. 21v", + "height": "5492", + "width": "3992", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-24", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0029", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5492", + "width": "3992", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0029", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-24" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f21v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-25", + "@type": "sc:Canvas", + "label": "f. 23r", + "height": "5611", + "width": "3979", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-25", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0022", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5611", + "width": "3979", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0022", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-25" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f23r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-26", + "@type": "sc:Canvas", + "label": "f. 23v", + "height": "5587", + "width": "3883", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-26", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0021", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5587", + "width": "3883", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0021", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-26" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f23v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-1", + "@type": "sc:Canvas", + "label": "f. 51r", + "height": "5528", + "width": "3931", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-1", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0032", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5528", + "width": "3931", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0032", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-1" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f51r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-2", + "@type": "sc:Canvas", + "label": "f. 51v", + "height": "5527", + "width": "3945", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-2", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0031", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5527", + "width": "3945", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0031", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-2" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f51v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-27", + "@type": "sc:Canvas", + "label": "f. 67r", + "height": "5552", + "width": "4015", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-27", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0033", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5552", + "width": "4015", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0033", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-27" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f67r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-28", + "@type": "sc:Canvas", + "label": "f. 67v", + "height": "5588", + "width": "3955", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-28", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0034", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5588", + "width": "3955", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0034", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-28" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f67v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-29", + "@type": "sc:Canvas", + "label": "f. 93r", + "height": "5695", + "width": "3943", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-29", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0028", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5695", + "width": "3943", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0028", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-29" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f93r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-30", + "@type": "sc:Canvas", + "label": "f. 93v", + "height": "5599", + "width": "4003", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-30", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0027", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5599", + "width": "4003", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0027", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-30" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f93v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-31", + "@type": "sc:Canvas", + "label": "f. 94r", + "height": "5731", + "width": "4183", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-31", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0026", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5731", + "width": "4183", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0026", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-31" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f94r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-32", + "@type": "sc:Canvas", + "label": "f. 94v", + "height": "5635", + "width": "4194", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-32", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0025", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5635", + "width": "4194", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0025", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-32" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f94v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-33", + "@type": "sc:Canvas", + "label": "f. 99bisr", + "height": "5587", + "width": "4099", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-33", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0014", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5587", + "width": "4099", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0014", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-33" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f99bisr.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-34", + "@type": "sc:Canvas", + "label": "f. 99bisv", + "height": "5575", + "width": "4039", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-34", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0013", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5575", + "width": "4039", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0013", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-34" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f99bisv.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-35", + "@type": "sc:Canvas", + "label": "f. 104r", + "height": "5527", + "width": "4027", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-35", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0015", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5527", + "width": "4027", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0015", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-35" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f104r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-36", + "@type": "sc:Canvas", + "label": "f. 104v", + "height": "5515", + "width": "3931", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-36", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0016", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5515", + "width": "3931", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0016", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-36" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f104v.json", + "@type": "sc:AnnotationList" + } + ] + } + ] + } + ] + } \ No newline at end of file diff --git a/spec/fixtures/iiif_manifest_records/manifest_002.json b/spec/fixtures/iiif_manifest_records/manifest_002.json new file mode 100644 index 0000000..668fd61 --- /dev/null +++ b/spec/fixtures/iiif_manifest_records/manifest_002.json @@ -0,0 +1,1254 @@ +{ + "@context": "http://www.shared-canvas.org/ns/context.json", + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/manifest.json", + "@type": "sc:Manifest", + "label": "Biblioth\u00e8que nationale de France, NAF 6221", + "description": "displayLabelSummarycontentM\u00e9langes. II Recueil de 154 lais, ballades, rondeaux et serventois, dont 71 au moins sont d'Eustache DESCHAMPS", + "attribution": "Provided by the Stanford University Libraries", + "seeAlso": { + "@id": "http://purl.stanford.edu/jr903ng8662.mods", + "dcterms:format": "application/mods+xml" + }, + "sequences": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/normal", + "@type": "sc:Sequence", + "label": "Current page order", + "canvases": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-1", + "@type": "sc:Canvas", + "label": "plat sup\u00e9rieur", + "height": "4899", + "width": "3979", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-1", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000001", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4899", + "width": "3979", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000001", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-1" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-7", + "@type": "sc:Canvas", + "label": "Ar", + "height": "4785", + "width": "3760", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-7", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000007", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4785", + "width": "3760", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000007", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-7" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-Ar.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-8", + "@type": "sc:Canvas", + "label": "Av", + "height": "4838", + "width": "3769", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-8", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000008", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4838", + "width": "3769", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000008", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-8" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-Av.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-51", + "@type": "sc:Canvas", + "label": "22r", + "height": "4829", + "width": "3622", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-51", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000051", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4829", + "width": "3622", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000051", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-51" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-22r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-52", + "@type": "sc:Canvas", + "label": "22v", + "height": "4904", + "width": "3708", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-52", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000052", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4904", + "width": "3708", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000052", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-52" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-22v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-53", + "@type": "sc:Canvas", + "label": "23r", + "height": "4851", + "width": "3527", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-53", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000053", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4851", + "width": "3527", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000053", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-53" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-23r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-54", + "@type": "sc:Canvas", + "label": "23v", + "height": "4904", + "width": "3669", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-54", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000054", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4904", + "width": "3669", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000054", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-54" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-23v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-55", + "@type": "sc:Canvas", + "label": "24r", + "height": "4826", + "width": "3590", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-55", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000055", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4826", + "width": "3590", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000055", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-55" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-24r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-56", + "@type": "sc:Canvas", + "label": "24v", + "height": "4904", + "width": "3692", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-56", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000056", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4904", + "width": "3692", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000056", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-56" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-24v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-57", + "@type": "sc:Canvas", + "label": "25r", + "height": "4826", + "width": "3631", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-57", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000057", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4826", + "width": "3631", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000057", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-57" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-25r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-58", + "@type": "sc:Canvas", + "label": "25v", + "height": "4904", + "width": "3699", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-58", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000058", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4904", + "width": "3699", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000058", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-58" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-25v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-59", + "@type": "sc:Canvas", + "label": "26r", + "height": "4800", + "width": "3622", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-59", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000059", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4800", + "width": "3622", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000059", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-59" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-26r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-60", + "@type": "sc:Canvas", + "label": "26v", + "height": "4904", + "width": "3720", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-60", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000060", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4904", + "width": "3720", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000060", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-60" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-26v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-61", + "@type": "sc:Canvas", + "label": "27r", + "height": "4768", + "width": "3622", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-61", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000061", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4768", + "width": "3622", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000061", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-61" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-27r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-62", + "@type": "sc:Canvas", + "label": "27v", + "height": "4875", + "width": "3698", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-62", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000062", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4875", + "width": "3698", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000062", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-62" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-27v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-63", + "@type": "sc:Canvas", + "label": "28r", + "height": "4826", + "width": "3605", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-63", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000063", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4826", + "width": "3605", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000063", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-63" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-28r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-64", + "@type": "sc:Canvas", + "label": "28v", + "height": "4861", + "width": "3680", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-64", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000064", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4861", + "width": "3680", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000064", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-64" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-28v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-65", + "@type": "sc:Canvas", + "label": "29r", + "height": "4826", + "width": "3605", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-65", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000065", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4826", + "width": "3605", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000065", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-65" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-29r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-66", + "@type": "sc:Canvas", + "label": "29v", + "height": "4883", + "width": "3688", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-66", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000066", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4883", + "width": "3688", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000066", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-66" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-29v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-67", + "@type": "sc:Canvas", + "label": "30r", + "height": "4854", + "width": "3605", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-67", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000067", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4854", + "width": "3605", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000067", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-67" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-30r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-68", + "@type": "sc:Canvas", + "label": "30v", + "height": "4856", + "width": "3646", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-68", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000068", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4856", + "width": "3646", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000068", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-68" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-30v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-69", + "@type": "sc:Canvas", + "label": "31r", + "height": "4821", + "width": "3605", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-69", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000069", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4821", + "width": "3605", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000069", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-69" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-31r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-70", + "@type": "sc:Canvas", + "label": "31v", + "height": "4884", + "width": "3684", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-70", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000070", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4884", + "width": "3684", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000070", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-70" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-31v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-71", + "@type": "sc:Canvas", + "label": "32r", + "height": "4777", + "width": "3642", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-71", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000071", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4777", + "width": "3642", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000071", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-71" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-32r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-72", + "@type": "sc:Canvas", + "label": "32v", + "height": "4904", + "width": "3688", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-72", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000072", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4904", + "width": "3688", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000072", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-72" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-32v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-73", + "@type": "sc:Canvas", + "label": "33r", + "height": "4816", + "width": "3648", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-73", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000073", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4816", + "width": "3648", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000073", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-73" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-33r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-74", + "@type": "sc:Canvas", + "label": "33v", + "height": "4904", + "width": "3666", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-74", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000074", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4904", + "width": "3666", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000074", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-74" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-33v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-75", + "@type": "sc:Canvas", + "label": "34r", + "height": "4800", + "width": "3650", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-75", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000075", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4800", + "width": "3650", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000075", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-75" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-34r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-76", + "@type": "sc:Canvas", + "label": "34v", + "height": "4904", + "width": "3680", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-76", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000076", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4904", + "width": "3680", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000076", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-76" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-34v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-77", + "@type": "sc:Canvas", + "label": "35r", + "height": "4814", + "width": "3622", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-77", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000077", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4814", + "width": "3622", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000077", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-77" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-35r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-78", + "@type": "sc:Canvas", + "label": "35v", + "height": "4904", + "width": "3723", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-78", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000078", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4904", + "width": "3723", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000078", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-78" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-35v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-79", + "@type": "sc:Canvas", + "label": "page de garde recto", + "height": "4856", + "width": "3736", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-79", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000079", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4856", + "width": "3736", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000079", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-79" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-80", + "@type": "sc:Canvas", + "label": "page de garde verso", + "height": "4904", + "width": "3784", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-80", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000080", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4904", + "width": "3784", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000080", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-80" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-81", + "@type": "sc:Canvas", + "label": "contreplat inf.", + "height": "4930", + "width": "3868", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-81", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000081", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4930", + "width": "3868", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000081", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-81" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-82", + "@type": "sc:Canvas", + "label": "plat inf\u00e9rieur.", + "height": "4968", + "width": "4032", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-82", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000082", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4968", + "width": "4032", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000082", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-82" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-83", + "@type": "sc:Canvas", + "label": "dos", + "height": "4951", + "width": "469", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-83", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000083", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4951", + "width": "469", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000083", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-83" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-84", + "@type": "sc:Canvas", + "label": "tranche sup\u00e9rieure", + "height": "3896", + "width": "582", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-84", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000084", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "3896", + "width": "582", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000084", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-84" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-85", + "@type": "sc:Canvas", + "label": "goutti\u00e8re", + "height": "4868", + "width": "361", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-85", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000085", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4868", + "width": "361", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000085", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-85" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-86", + "@type": "sc:Canvas", + "label": "tranche inf\u00e9rieure", + "height": "3912", + "width": "480", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-86", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000086", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "3912", + "width": "480", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000086", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-86" + } + ] + } + ] + } + ] +} diff --git a/spec/fixtures/iiif_manifest_records/manifest_003.json b/spec/fixtures/iiif_manifest_records/manifest_003.json new file mode 100644 index 0000000..f9a7820 --- /dev/null +++ b/spec/fixtures/iiif_manifest_records/manifest_003.json @@ -0,0 +1,22023 @@ +{ + "@context": "http://www.shared-canvas.org/ns/context.json", + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/manifest.json", + "@type": "sc:Manifest", + "label": "CCCC MS 198", + "attribution": "Provided by the Parker Library, Corpus Christi College, Cambridge", + "seeAlso": { + "@id": "http://purl.stanford.edu/fh878gz0315.mods", + "dcterms:format": "application/mods+xml" + }, + "within": "http://dms-data.stanford.edu/Parker/", + "sequences": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/normal", + "@type": "sc:Sequence", + "label": "Current page order", + "canvases": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-1", + "@type": "sc:Canvas", + "label": "Front outside cover", + "height": "6381", + "width": "4533", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-1", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_fob_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6381", + "width": "4533", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_fob_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-1" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-2", + "@type": "sc:Canvas", + "label": "Front inside cover", + "height": "6366", + "width": "4399", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-2", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_fib_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6366", + "width": "4399", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_fib_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-2" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-3", + "@type": "sc:Canvas", + "label": "f. a r", + "height": "6102", + "width": "4038", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-3", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_a_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6102", + "width": "4038", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_a_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-3" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-4", + "@type": "sc:Canvas", + "label": "f. a v", + "height": "6138", + "width": "3883", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-4", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_a_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6138", + "width": "3883", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_a_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-4" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-5", + "@type": "sc:Canvas", + "label": "f. b r", + "height": "6142", + "width": "3910", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-5", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_b_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6142", + "width": "3910", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_b_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-5" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-6", + "@type": "sc:Canvas", + "label": "f. b v", + "height": "6162", + "width": "3956", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-6", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_b_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6162", + "width": "3956", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_b_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-6" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-7", + "@type": "sc:Canvas", + "label": "f. c r", + "height": "6158", + "width": "3974", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-7", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_c_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6158", + "width": "3974", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_c_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-7" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-8", + "@type": "sc:Canvas", + "label": "f. c v", + "height": "6198", + "width": "4147", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-8", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_c_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6198", + "width": "4147", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_c_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-8" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-9", + "@type": "sc:Canvas", + "label": "f. i r", + "height": "5957", + "width": "3943", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-9", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_i_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5957", + "width": "3943", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_i_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-9" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-10", + "@type": "sc:Canvas", + "label": "f. i v", + "height": "5950", + "width": "4006", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-10", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_i_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5950", + "width": "4006", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_i_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-10" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-11", + "@type": "sc:Canvas", + "label": "f. ii r", + "height": "5983", + "width": "3895", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-11", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_ii_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5983", + "width": "3895", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_ii_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-11" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-12", + "@type": "sc:Canvas", + "label": "f. ii v", + "height": "5974", + "width": "3934", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-12", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_ii_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5974", + "width": "3934", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_ii_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-12" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-13", + "@type": "sc:Canvas", + "label": "f. iii r", + "height": "6018", + "width": "3943", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-13", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_iii_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3943", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_iii_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-13" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-14", + "@type": "sc:Canvas", + "label": "f. iii v", + "height": "6014", + "width": "3950", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-14", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_iii_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6014", + "width": "3950", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_iii_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-14" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-15", + "@type": "sc:Canvas", + "label": "f. 1 r", + "height": "5966", + "width": "3902", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-15", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_001_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5966", + "width": "3902", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_001_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-15" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-16", + "@type": "sc:Canvas", + "label": "f. 1 v", + "height": "6018", + "width": "3990", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-16", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_001_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3990", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_001_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-16" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-17", + "@type": "sc:Canvas", + "label": "f. 2 r", + "height": "5981", + "width": "3838", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-17", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_002_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5981", + "width": "3838", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_002_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-17" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-18", + "@type": "sc:Canvas", + "label": "f. 2 v", + "height": "6030", + "width": "3956", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-18", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_002_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3956", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_002_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-18" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-19", + "@type": "sc:Canvas", + "label": "f. 3 r", + "height": "5960", + "width": "3845", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-19", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_003_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5960", + "width": "3845", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_003_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-19" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-20", + "@type": "sc:Canvas", + "label": "f. 3 v", + "height": "5999", + "width": "3890", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-20", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_003_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5999", + "width": "3890", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_003_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-20" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-21", + "@type": "sc:Canvas", + "label": "f. 4 r", + "height": "5988", + "width": "3855", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-21", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_004_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5988", + "width": "3855", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_004_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-21" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-22", + "@type": "sc:Canvas", + "label": "f. 4 v", + "height": "5969", + "width": "3847", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-22", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_004_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5969", + "width": "3847", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_004_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-22" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-23", + "@type": "sc:Canvas", + "label": "f. 5 r", + "height": "5956", + "width": "3758", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-23", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_005_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5956", + "width": "3758", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_005_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-23" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-24", + "@type": "sc:Canvas", + "label": "f. 5 v", + "height": "5994", + "width": "3904", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-24", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_005_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5994", + "width": "3904", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_005_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-24" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-25", + "@type": "sc:Canvas", + "label": "f. 6 r", + "height": "5958", + "width": "3822", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-25", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_006_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5958", + "width": "3822", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_006_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-25" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-26", + "@type": "sc:Canvas", + "label": "f. 6 v", + "height": "5970", + "width": "3860", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-26", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_006_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5970", + "width": "3860", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_006_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-26" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-27", + "@type": "sc:Canvas", + "label": "f. 7 r", + "height": "5947", + "width": "3761", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-27", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_007_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5947", + "width": "3761", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_007_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-27" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-28", + "@type": "sc:Canvas", + "label": "f. 7 v", + "height": "5982", + "width": "3859", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-28", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_007_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3859", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_007_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-28" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-29", + "@type": "sc:Canvas", + "label": "f. 8 r", + "height": "5976", + "width": "3789", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-29", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_008_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5976", + "width": "3789", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_008_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-29" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-30", + "@type": "sc:Canvas", + "label": "f. 8 v", + "height": "5982", + "width": "3859", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-30", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_008_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3859", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_008_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-30" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-31", + "@type": "sc:Canvas", + "label": "f. 9 r", + "height": "5964", + "width": "3710", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-31", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_009_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5964", + "width": "3710", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_009_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-31" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-32", + "@type": "sc:Canvas", + "label": "f. 9 v", + "height": "6030", + "width": "3836", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-32", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_009_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3836", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_009_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-32" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-33", + "@type": "sc:Canvas", + "label": "f. 10 r", + "height": "6022", + "width": "3678", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-33", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_010_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3678", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_010_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-33" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-34", + "@type": "sc:Canvas", + "label": "f. 10 v", + "height": "5982", + "width": "3883", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-34", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_010_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3883", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_010_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-34" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-35", + "@type": "sc:Canvas", + "label": "f. 11 r", + "height": "5974", + "width": "3734", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-35", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_011_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5974", + "width": "3734", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_011_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-35" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-36", + "@type": "sc:Canvas", + "label": "f. 11 v", + "height": "5994", + "width": "3847", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-36", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_011_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5994", + "width": "3847", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_011_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-36" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-37", + "@type": "sc:Canvas", + "label": "f. 12 r", + "height": "5974", + "width": "3702", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-37", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_012_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5974", + "width": "3702", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_012_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-37" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-38", + "@type": "sc:Canvas", + "label": "f. 12 v", + "height": "5979", + "width": "3895", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-38", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_012_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5979", + "width": "3895", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_012_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-38" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-39", + "@type": "sc:Canvas", + "label": "f. 13 r", + "height": "5966", + "width": "3766", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-39", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_013_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5966", + "width": "3766", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_013_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-39" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-40", + "@type": "sc:Canvas", + "label": "f. 13 v", + "height": "6006", + "width": "3859", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-40", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_013_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3859", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_013_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-40" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-41", + "@type": "sc:Canvas", + "label": "f. 14 r", + "height": "5966", + "width": "3733", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-41", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_014_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5966", + "width": "3733", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_014_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-41" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-42", + "@type": "sc:Canvas", + "label": "f. 14 v", + "height": "6002", + "width": "3850", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-42", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_014_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6002", + "width": "3850", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_014_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-42" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-43", + "@type": "sc:Canvas", + "label": "f. 15 r", + "height": "5958", + "width": "3741", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-43", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_015_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5958", + "width": "3741", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_015_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-43" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-44", + "@type": "sc:Canvas", + "label": "f. 15 v", + "height": "6019", + "width": "3932", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-44", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_015_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6019", + "width": "3932", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_015_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-44" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-45", + "@type": "sc:Canvas", + "label": "f. 16 r", + "height": "5976", + "width": "3766", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-45", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_016_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5976", + "width": "3766", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_016_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-45" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-46", + "@type": "sc:Canvas", + "label": "f. 16 v", + "height": "5983", + "width": "3869", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-46", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_016_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5983", + "width": "3869", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_016_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-46" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-47", + "@type": "sc:Canvas", + "label": "f. 17 r", + "height": "5965", + "width": "3678", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-47", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_017_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5965", + "width": "3678", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_017_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-47" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-48", + "@type": "sc:Canvas", + "label": "f. 17 v", + "height": "6056", + "width": "3855", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-48", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_017_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6056", + "width": "3855", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_017_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-48" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-49", + "@type": "sc:Canvas", + "label": "f. 18 r", + "height": "5998", + "width": "3798", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-49", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_018_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5998", + "width": "3798", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_018_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-49" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-50", + "@type": "sc:Canvas", + "label": "f. 18 v", + "height": "6018", + "width": "3865", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-50", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_018_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3865", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_018_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-50" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-51", + "@type": "sc:Canvas", + "label": "f. 19 r", + "height": "5970", + "width": "3734", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-51", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_019_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5970", + "width": "3734", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_019_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-51" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-52", + "@type": "sc:Canvas", + "label": "f. 19 v", + "height": "5994", + "width": "3849", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-52", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_019_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5994", + "width": "3849", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_019_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-52" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-53", + "@type": "sc:Canvas", + "label": "f. 20 r", + "height": "5979", + "width": "3771", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-53", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_020_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5979", + "width": "3771", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_020_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-53" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-54", + "@type": "sc:Canvas", + "label": "f. 20 v", + "height": "5970", + "width": "3787", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-54", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_020_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5970", + "width": "3787", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_020_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-54" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-55", + "@type": "sc:Canvas", + "label": "f. 21 r", + "height": "5990", + "width": "3702", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-55", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_021_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "3702", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_021_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-55" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-56", + "@type": "sc:Canvas", + "label": "f. 21 v", + "height": "6006", + "width": "3802", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-56", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_021_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3802", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_021_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-56" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-57", + "@type": "sc:Canvas", + "label": "f. 22 r", + "height": "5989", + "width": "3702", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-57", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_022_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5989", + "width": "3702", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_022_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-57" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-58", + "@type": "sc:Canvas", + "label": "f. 22 v", + "height": "6030", + "width": "3881", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-58", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_022_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3881", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_022_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-58" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-59", + "@type": "sc:Canvas", + "label": "f. 23 r", + "height": "5951", + "width": "3632", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-59", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_023_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5951", + "width": "3632", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_023_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-59" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-60", + "@type": "sc:Canvas", + "label": "f. 23 v", + "height": "6006", + "width": "3781", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-60", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_023_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3781", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_023_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-60" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-61", + "@type": "sc:Canvas", + "label": "f. 24 r", + "height": "5956", + "width": "3664", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-61", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_024_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5956", + "width": "3664", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_024_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-61" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-62", + "@type": "sc:Canvas", + "label": "f. 24 v", + "height": "5958", + "width": "3800", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-62", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_024_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5958", + "width": "3800", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_024_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-62" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-63", + "@type": "sc:Canvas", + "label": "f. 25 r", + "height": "5974", + "width": "3710", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-63", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_025_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5974", + "width": "3710", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_025_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-63" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-64", + "@type": "sc:Canvas", + "label": "f. 25 v", + "height": "5982", + "width": "3810", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-64", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_025_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3810", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_025_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-64" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-65", + "@type": "sc:Canvas", + "label": "f. 26 r", + "height": "5957", + "width": "3702", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-65", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_026_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5957", + "width": "3702", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_026_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-65" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-66", + "@type": "sc:Canvas", + "label": "f. 26 v", + "height": "6006", + "width": "3785", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-66", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_026_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3785", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_026_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-66" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-67", + "@type": "sc:Canvas", + "label": "f. 27 r", + "height": "5982", + "width": "3711", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-67", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_027_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3711", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_027_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-67" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-68", + "@type": "sc:Canvas", + "label": "f. 27 v", + "height": "5982", + "width": "3776", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-68", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_027_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3776", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_027_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-68" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-69", + "@type": "sc:Canvas", + "label": "f. 28 r", + "height": "5957", + "width": "3677", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-69", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_028_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5957", + "width": "3677", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_028_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-69" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-70", + "@type": "sc:Canvas", + "label": "f. 28 v", + "height": "6006", + "width": "3835", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-70", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_028_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3835", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_028_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-70" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-71", + "@type": "sc:Canvas", + "label": "f. 29 r", + "height": "5989", + "width": "3662", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-71", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_029_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5989", + "width": "3662", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_029_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-71" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-72", + "@type": "sc:Canvas", + "label": "f. 29 v", + "height": "5970", + "width": "3835", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-72", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_029_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5970", + "width": "3835", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_029_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-72" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-73", + "@type": "sc:Canvas", + "label": "f. 30 r", + "height": "5990", + "width": "3662", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-73", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_030_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "3662", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_030_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-73" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-74", + "@type": "sc:Canvas", + "label": "f. 30 v", + "height": "6022", + "width": "3835", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-74", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_030_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3835", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_030_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-74" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-75", + "@type": "sc:Canvas", + "label": "f. 31 r", + "height": "5969", + "width": "3656", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-75", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_031_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5969", + "width": "3656", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_031_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-75" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-76", + "@type": "sc:Canvas", + "label": "f. 31 v", + "height": "6006", + "width": "3786", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-76", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_031_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3786", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_031_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-76" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-77", + "@type": "sc:Canvas", + "label": "f. 32 r", + "height": "5975", + "width": "3702", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-77", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_032_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5975", + "width": "3702", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_032_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-77" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-78", + "@type": "sc:Canvas", + "label": "f. 32 v", + "height": "6030", + "width": "3859", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-78", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_032_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3859", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_032_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-78" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-79", + "@type": "sc:Canvas", + "label": "f. 33 r", + "height": "5950", + "width": "3774", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-79", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_033_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5950", + "width": "3774", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_033_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-79" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-80", + "@type": "sc:Canvas", + "label": "f. 33 v", + "height": "5926", + "width": "3750", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-80", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_033_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5926", + "width": "3750", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_033_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-80" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-81", + "@type": "sc:Canvas", + "label": "f. 34 r", + "height": "5950", + "width": "3718", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-81", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_034_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5950", + "width": "3718", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_034_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-81" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-82", + "@type": "sc:Canvas", + "label": "f. 34 v", + "height": "5998", + "width": "3895", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-82", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_034_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5998", + "width": "3895", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_034_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-82" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-83", + "@type": "sc:Canvas", + "label": "f. 35 r", + "height": "5957", + "width": "3733", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-83", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_035_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5957", + "width": "3733", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_035_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-83" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-84", + "@type": "sc:Canvas", + "label": "f. 35 v", + "height": "5959", + "width": "3787", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-84", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_035_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5959", + "width": "3787", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_035_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-84" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-85", + "@type": "sc:Canvas", + "label": "f. 36 r", + "height": "5897", + "width": "3758", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-85", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_036_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5897", + "width": "3758", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_036_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-85" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-86", + "@type": "sc:Canvas", + "label": "f. 36 v", + "height": "5934", + "width": "3759", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-86", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_036_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5934", + "width": "3759", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_036_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-86" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-87", + "@type": "sc:Canvas", + "label": "f. 37 r", + "height": "5916", + "width": "3790", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-87", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_037_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5916", + "width": "3790", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_037_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-87" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-88", + "@type": "sc:Canvas", + "label": "f. 37 v", + "height": "5934", + "width": "3756", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-88", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_037_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5934", + "width": "3756", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_037_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-88" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-89", + "@type": "sc:Canvas", + "label": "f. 38 r", + "height": "5920", + "width": "3712", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-89", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_038_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5920", + "width": "3712", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_038_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-89" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-90", + "@type": "sc:Canvas", + "label": "f. 38 v", + "height": "5942", + "width": "3774", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-90", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_038_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5942", + "width": "3774", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_038_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-90" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-91", + "@type": "sc:Canvas", + "label": "f. 39 r", + "height": "5967", + "width": "3742", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-91", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_039_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5967", + "width": "3742", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_039_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-91" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-92", + "@type": "sc:Canvas", + "label": "f. 39 v", + "height": "5958", + "width": "3798", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-92", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_039_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5958", + "width": "3798", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_039_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-92" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-93", + "@type": "sc:Canvas", + "label": "f. 40 r", + "height": "5975", + "width": "3774", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-93", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_040_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5975", + "width": "3774", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_040_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-93" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-94", + "@type": "sc:Canvas", + "label": "f. 40 v", + "height": "5958", + "width": "3766", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-94", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_040_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5958", + "width": "3766", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_040_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-94" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-95", + "@type": "sc:Canvas", + "label": "f. 41 r", + "height": "5958", + "width": "3854", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-95", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_041_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5958", + "width": "3854", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_041_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-95" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-96", + "@type": "sc:Canvas", + "label": "f. 41 v", + "height": "5966", + "width": "3747", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-96", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_041_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5966", + "width": "3747", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_041_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-96" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-97", + "@type": "sc:Canvas", + "label": "f. 42 r", + "height": "5998", + "width": "3734", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-97", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_042_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5998", + "width": "3734", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_042_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-97" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-98", + "@type": "sc:Canvas", + "label": "f. 42 v", + "height": "5974", + "width": "3782", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-98", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_042_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5974", + "width": "3782", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_042_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-98" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-99", + "@type": "sc:Canvas", + "label": "f. 43 r", + "height": "5959", + "width": "3798", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-99", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_043_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5959", + "width": "3798", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_043_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-99" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-100", + "@type": "sc:Canvas", + "label": "f. 43 v", + "height": "5933", + "width": "3773", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-100", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_043_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5933", + "width": "3773", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_043_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-100" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-101", + "@type": "sc:Canvas", + "label": "f. 44 r", + "height": "6038", + "width": "3871", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-101", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_044_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6038", + "width": "3871", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_044_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-101" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-102", + "@type": "sc:Canvas", + "label": "f. 44 v", + "height": "5950", + "width": "3788", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-102", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_044_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5950", + "width": "3788", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_044_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-102" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-103", + "@type": "sc:Canvas", + "label": "f. 45 r", + "height": "5974", + "width": "3790", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-103", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_045_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5974", + "width": "3790", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_045_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-103" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-104", + "@type": "sc:Canvas", + "label": "f. 45 v", + "height": "5955", + "width": "3759", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-104", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_045_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5955", + "width": "3759", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_045_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-104" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-105", + "@type": "sc:Canvas", + "label": "f. 46 r", + "height": "5972", + "width": "3758", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-105", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_046_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5972", + "width": "3758", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_046_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-105" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-106", + "@type": "sc:Canvas", + "label": "f. 46 v", + "height": "5958", + "width": "3784", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-106", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_046_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5958", + "width": "3784", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_046_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-106" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-107", + "@type": "sc:Canvas", + "label": "f. 47 r", + "height": "5990", + "width": "3734", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-107", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_047_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "3734", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_047_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-107" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-108", + "@type": "sc:Canvas", + "label": "f. 47 v", + "height": "5966", + "width": "3742", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-108", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_047_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5966", + "width": "3742", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_047_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-108" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-109", + "@type": "sc:Canvas", + "label": "f. 48 r", + "height": "5955", + "width": "3792", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-109", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_048_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5955", + "width": "3792", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_048_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-109" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-110", + "@type": "sc:Canvas", + "label": "f. 48 v", + "height": "5965", + "width": "3814", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-110", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_048_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5965", + "width": "3814", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_048_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-110" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-111", + "@type": "sc:Canvas", + "label": "f. 49 r", + "height": "5970", + "width": "3790", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-111", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_049_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5970", + "width": "3790", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_049_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-111" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-112", + "@type": "sc:Canvas", + "label": "f. 49 v", + "height": "5966", + "width": "3826", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-112", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_049_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5966", + "width": "3826", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_049_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-112" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-113", + "@type": "sc:Canvas", + "label": "f. 50 r", + "height": "6001", + "width": "3830", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-113", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_050_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6001", + "width": "3830", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_050_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-113" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-114", + "@type": "sc:Canvas", + "label": "f. 50 v", + "height": "5982", + "width": "3805", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-114", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_050_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3805", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_050_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-114" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-115", + "@type": "sc:Canvas", + "label": "f. 51 r", + "height": "5974", + "width": "3830", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-115", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_051_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5974", + "width": "3830", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_051_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-115" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-116", + "@type": "sc:Canvas", + "label": "f. 51 v", + "height": "6006", + "width": "3835", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-116", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_051_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3835", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_051_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-116" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-117", + "@type": "sc:Canvas", + "label": "f. 52 r", + "height": "5966", + "width": "3791", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-117", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_052_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5966", + "width": "3791", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_052_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-117" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-118", + "@type": "sc:Canvas", + "label": "f. 52 v", + "height": "6006", + "width": "3774", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-118", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_052_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3774", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_052_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-118" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-119", + "@type": "sc:Canvas", + "label": "f. 53 r", + "height": "5980", + "width": "3767", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-119", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_053_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5980", + "width": "3767", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_053_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-119" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-120", + "@type": "sc:Canvas", + "label": "f. 53 v", + "height": "6030", + "width": "3859", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-120", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_053_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3859", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_053_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-120" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-121", + "@type": "sc:Canvas", + "label": "f. 54 r", + "height": "5947", + "width": "3713", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-121", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_054_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5947", + "width": "3713", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_054_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-121" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-122", + "@type": "sc:Canvas", + "label": "f. 54 v", + "height": "5993", + "width": "3751", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-122", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_054_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5993", + "width": "3751", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_054_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-122" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-123", + "@type": "sc:Canvas", + "label": "f. 55 r", + "height": "5982", + "width": "3805", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-123", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_055_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3805", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_055_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-123" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-124", + "@type": "sc:Canvas", + "label": "f. 55 v", + "height": "5958", + "width": "3787", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-124", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_055_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5958", + "width": "3787", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_055_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-124" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-125", + "@type": "sc:Canvas", + "label": "f. 56 r", + "height": "5970", + "width": "3814", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-125", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_056_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5970", + "width": "3814", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_056_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-125" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-126", + "@type": "sc:Canvas", + "label": "f. 56 v", + "height": "5994", + "width": "3836", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-126", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_056_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5994", + "width": "3836", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_056_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-126" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-127", + "@type": "sc:Canvas", + "label": "f. 57 r", + "height": "5975", + "width": "3727", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-127", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_057_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5975", + "width": "3727", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_057_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-127" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-128", + "@type": "sc:Canvas", + "label": "f. 57 v", + "height": "6006", + "width": "3786", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-128", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_057_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3786", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_057_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-128" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-129", + "@type": "sc:Canvas", + "label": "f. 58 r", + "height": "5989", + "width": "3783", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-129", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_058_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5989", + "width": "3783", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_058_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-129" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-130", + "@type": "sc:Canvas", + "label": "f. 58 v", + "height": "6018", + "width": "3775", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-130", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_058_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3775", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_058_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-130" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-131", + "@type": "sc:Canvas", + "label": "f. 59 r", + "height": "5974", + "width": "3766", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-131", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_059_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5974", + "width": "3766", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_059_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-131" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-132", + "@type": "sc:Canvas", + "label": "f. 59 v", + "height": "6030", + "width": "3776", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-132", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_059_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3776", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_059_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-132" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-133", + "@type": "sc:Canvas", + "label": "f. 60 r", + "height": "5981", + "width": "3824", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-133", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_060_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5981", + "width": "3824", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_060_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-133" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-134", + "@type": "sc:Canvas", + "label": "f. 60 v", + "height": "6066", + "width": "3854", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-134", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_060_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3854", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_060_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-134" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-135", + "@type": "sc:Canvas", + "label": "f. 61 r", + "height": "5967", + "width": "3815", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-135", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_061_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5967", + "width": "3815", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_061_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-135" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-136", + "@type": "sc:Canvas", + "label": "f. 61 v", + "height": "6066", + "width": "3895", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-136", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_061_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3895", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_061_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-136" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-137", + "@type": "sc:Canvas", + "label": "f. 62 r", + "height": "6010", + "width": "3828", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-137", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_062_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6010", + "width": "3828", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_062_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-137" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-138", + "@type": "sc:Canvas", + "label": "f. 62 v", + "height": "6018", + "width": "3850", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-138", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_062_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3850", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_062_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-138" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-139", + "@type": "sc:Canvas", + "label": "f. 63 r", + "height": "6030", + "width": "3846", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-139", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_063_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3846", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_063_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-139" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-140", + "@type": "sc:Canvas", + "label": "f. 63 v", + "height": "6018", + "width": "3861", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-140", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_063_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3861", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_063_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-140" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-141", + "@type": "sc:Canvas", + "label": "f. 64 r", + "height": "6007", + "width": "3775", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-141", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_064_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6007", + "width": "3775", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_064_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-141" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-142", + "@type": "sc:Canvas", + "label": "f. 64 v", + "height": "6006", + "width": "3821", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-142", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_064_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3821", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_064_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-142" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-143", + "@type": "sc:Canvas", + "label": "f. 65 r", + "height": "6007", + "width": "3860", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-143", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_065_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6007", + "width": "3860", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_065_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-143" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-144", + "@type": "sc:Canvas", + "label": "f. 65 v", + "height": "6028", + "width": "3869", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-144", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_065_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6028", + "width": "3869", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_065_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-144" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-145", + "@type": "sc:Canvas", + "label": "f. 66 r", + "height": "6019", + "width": "3806", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-145", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_066_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6019", + "width": "3806", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_066_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-145" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-146", + "@type": "sc:Canvas", + "label": "f. 66 v", + "height": "6054", + "width": "3906", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-146", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_066_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3906", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_066_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-146" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-147", + "@type": "sc:Canvas", + "label": "f. 67 r", + "height": "5993", + "width": "3854", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-147", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_067_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5993", + "width": "3854", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_067_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-147" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-148", + "@type": "sc:Canvas", + "label": "f. 67 v", + "height": "5990", + "width": "3776", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-148", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_067_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "3776", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_067_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-148" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-149", + "@type": "sc:Canvas", + "label": "f. 68 r", + "height": "5994", + "width": "3802", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-149", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_068_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5994", + "width": "3802", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_068_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-149" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-150", + "@type": "sc:Canvas", + "label": "f. 68 v", + "height": "5981", + "width": "3799", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-150", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_068_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5981", + "width": "3799", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_068_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-150" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-151", + "@type": "sc:Canvas", + "label": "f. 69 r", + "height": "6039", + "width": "3830", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-151", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_069_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6039", + "width": "3830", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_069_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-151" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-152", + "@type": "sc:Canvas", + "label": "f. 69 v", + "height": "6019", + "width": "3801", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-152", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_069_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6019", + "width": "3801", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_069_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-152" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-153", + "@type": "sc:Canvas", + "label": "f. 70 r", + "height": "6054", + "width": "3822", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-153", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_070_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3822", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_070_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-153" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-154", + "@type": "sc:Canvas", + "label": "f. 70 v", + "height": "5994", + "width": "3812", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-154", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_070_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5994", + "width": "3812", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_070_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-154" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-155", + "@type": "sc:Canvas", + "label": "f. 71 r", + "height": "6078", + "width": "3894", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-155", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_071_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6078", + "width": "3894", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_071_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-155" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-156", + "@type": "sc:Canvas", + "label": "f. 71 v", + "height": "6054", + "width": "3823", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-156", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_071_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3823", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_071_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-156" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-157", + "@type": "sc:Canvas", + "label": "f. 72 r", + "height": "6022", + "width": "3798", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-157", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_072_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3798", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_072_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-157" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-158", + "@type": "sc:Canvas", + "label": "f. 72 v", + "height": "5994", + "width": "3871", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-158", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_072_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5994", + "width": "3871", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_072_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-158" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-159", + "@type": "sc:Canvas", + "label": "f. 73 r", + "height": "6022", + "width": "3878", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-159", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_073_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3878", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_073_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-159" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-160", + "@type": "sc:Canvas", + "label": "f. 73 v", + "height": "6042", + "width": "3907", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-160", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_073_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3907", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_073_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-160" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-161", + "@type": "sc:Canvas", + "label": "f. 74 r", + "height": "5996", + "width": "3790", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-161", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_074_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5996", + "width": "3790", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_074_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-161" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-162", + "@type": "sc:Canvas", + "label": "f. 74 v", + "height": "5994", + "width": "3810", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-162", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_074_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5994", + "width": "3810", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_074_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-162" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-163", + "@type": "sc:Canvas", + "label": "f. 75 r", + "height": "6007", + "width": "3749", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-163", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_075_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6007", + "width": "3749", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_075_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-163" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-164", + "@type": "sc:Canvas", + "label": "f. 75 v", + "height": "5994", + "width": "3835", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-164", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_075_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5994", + "width": "3835", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_075_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-164" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-165", + "@type": "sc:Canvas", + "label": "f. 76 r", + "height": "6014", + "width": "3925", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-165", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_076_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6014", + "width": "3925", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_076_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-165" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-166", + "@type": "sc:Canvas", + "label": "f. 76 v", + "height": "6042", + "width": "3847", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-166", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_076_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3847", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_076_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-166" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-167", + "@type": "sc:Canvas", + "label": "f. 77 r", + "height": "5969", + "width": "3742", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-167", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_077_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5969", + "width": "3742", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_077_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-167" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-168", + "@type": "sc:Canvas", + "label": "f. 77 v", + "height": "6006", + "width": "3763", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-168", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_077_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3763", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_077_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-168" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-169", + "@type": "sc:Canvas", + "label": "f. 78 r", + "height": "5966", + "width": "3774", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-169", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_078_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5966", + "width": "3774", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_078_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-169" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-170", + "@type": "sc:Canvas", + "label": "f. 78 v", + "height": "6018", + "width": "3847", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-170", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_078_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3847", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_078_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-170" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-171", + "@type": "sc:Canvas", + "label": "f. 79 r", + "height": "5990", + "width": "3766", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-171", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_079_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "3766", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_079_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-171" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-172", + "@type": "sc:Canvas", + "label": "f. 79 v", + "height": "6018", + "width": "3787", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-172", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_079_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3787", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_079_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-172" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-173", + "@type": "sc:Canvas", + "label": "f. 80 r", + "height": "5973", + "width": "3806", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-173", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_080_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5973", + "width": "3806", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_080_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-173" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-174", + "@type": "sc:Canvas", + "label": "f. 80 v", + "height": "5974", + "width": "3820", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-174", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_080_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5974", + "width": "3820", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_080_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-174" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-175", + "@type": "sc:Canvas", + "label": "f. 81 r", + "height": "6014", + "width": "3903", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-175", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_081_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6014", + "width": "3903", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_081_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-175" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-176", + "@type": "sc:Canvas", + "label": "f. 81 v", + "height": "6006", + "width": "3811", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-176", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_081_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3811", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_081_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-176" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-177", + "@type": "sc:Canvas", + "label": "f. 82 r", + "height": "5990", + "width": "3766", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-177", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_082_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "3766", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_082_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-177" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-178", + "@type": "sc:Canvas", + "label": "f. 82 v", + "height": "6030", + "width": "3799", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-178", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_082_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3799", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_082_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-178" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-179", + "@type": "sc:Canvas", + "label": "f. 83 r", + "height": "5974", + "width": "3822", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-179", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_083_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5974", + "width": "3822", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_083_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-179" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-180", + "@type": "sc:Canvas", + "label": "f. 83 v", + "height": "6066", + "width": "3909", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-180", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_083_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3909", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_083_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-180" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-181", + "@type": "sc:Canvas", + "label": "f. 84 r", + "height": "5982", + "width": "3782", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-181", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_084_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3782", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_084_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-181" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-182", + "@type": "sc:Canvas", + "label": "f. 84 v", + "height": "6042", + "width": "3871", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-182", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_084_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3871", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_084_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-182" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-183", + "@type": "sc:Canvas", + "label": "f. 85 r", + "height": "5990", + "width": "3806", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-183", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_085_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "3806", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_085_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-183" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-184", + "@type": "sc:Canvas", + "label": "f. 85 v", + "height": "6018", + "width": "3809", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-184", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_085_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3809", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_085_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-184" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-185", + "@type": "sc:Canvas", + "label": "f. 86 r", + "height": "5999", + "width": "3847", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-185", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_086_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5999", + "width": "3847", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_086_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-185" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-186", + "@type": "sc:Canvas", + "label": "f. 86 v", + "height": "6055", + "width": "3870", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-186", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_086_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6055", + "width": "3870", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_086_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-186" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-187", + "@type": "sc:Canvas", + "label": "f. 87 r", + "height": "6013", + "width": "3757", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-187", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_087_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6013", + "width": "3757", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_087_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-187" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-188", + "@type": "sc:Canvas", + "label": "f. 87 v", + "height": "6042", + "width": "3859", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-188", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_087_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3859", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_087_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-188" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-189", + "@type": "sc:Canvas", + "label": "f. 88 r", + "height": "5991", + "width": "3878", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-189", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_088_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5991", + "width": "3878", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_088_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-189" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-190", + "@type": "sc:Canvas", + "label": "f. 88 v", + "height": "6010", + "width": "3886", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-190", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_088_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6010", + "width": "3886", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_088_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-190" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-191", + "@type": "sc:Canvas", + "label": "f. 89 r", + "height": "5943", + "width": "3878", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-191", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_089_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5943", + "width": "3878", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_089_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-191" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-192", + "@type": "sc:Canvas", + "label": "f. 89 v", + "height": "6030", + "width": "3907", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-192", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_089_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3907", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_089_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-192" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-193", + "@type": "sc:Canvas", + "label": "f. 90 r", + "height": "5975", + "width": "3870", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-193", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_090_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5975", + "width": "3870", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_090_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-193" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-194", + "@type": "sc:Canvas", + "label": "f. 90 v", + "height": "6024", + "width": "3900", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-194", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_090_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6024", + "width": "3900", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_090_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-194" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-195", + "@type": "sc:Canvas", + "label": "f. 91 r", + "height": "5966", + "width": "3830", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-195", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_091_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5966", + "width": "3830", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_091_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-195" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-196", + "@type": "sc:Canvas", + "label": "f. 91 v", + "height": "6030", + "width": "3797", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-196", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_091_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3797", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_091_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-196" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-197", + "@type": "sc:Canvas", + "label": "f. 92 r", + "height": "5943", + "width": "3846", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-197", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_092_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5943", + "width": "3846", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_092_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-197" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-198", + "@type": "sc:Canvas", + "label": "f. 92 v", + "height": "6006", + "width": "3919", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-198", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_092_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3919", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_092_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-198" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-199", + "@type": "sc:Canvas", + "label": "f. 93 r", + "height": "5982", + "width": "3870", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-199", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_093_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3870", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_093_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-199" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-200", + "@type": "sc:Canvas", + "label": "f. 93 v", + "height": "6038", + "width": "3857", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-200", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_093_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6038", + "width": "3857", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_093_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-200" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-201", + "@type": "sc:Canvas", + "label": "f. 94 r", + "height": "5974", + "width": "3798", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-201", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_094_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5974", + "width": "3798", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_094_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-201" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-202", + "@type": "sc:Canvas", + "label": "f. 94 v", + "height": "6042", + "width": "3883", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-202", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_094_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3883", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_094_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-202" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-203", + "@type": "sc:Canvas", + "label": "f. 95 r", + "height": "6021", + "width": "3806", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-203", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_095_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6021", + "width": "3806", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_095_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-203" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-204", + "@type": "sc:Canvas", + "label": "f. 95 v", + "height": "6006", + "width": "3836", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-204", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_095_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3836", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_095_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-204" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-205", + "@type": "sc:Canvas", + "label": "f. 96 r", + "height": "5974", + "width": "3902", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-205", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_096_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5974", + "width": "3902", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_096_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-205" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-206", + "@type": "sc:Canvas", + "label": "f. 96 v", + "height": "6006", + "width": "3847", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-206", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_096_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3847", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_096_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-206" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-207", + "@type": "sc:Canvas", + "label": "f. 97 r", + "height": "5995", + "width": "3853", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-207", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_097_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5995", + "width": "3853", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_097_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-207" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-208", + "@type": "sc:Canvas", + "label": "f. 97 v", + "height": "6042", + "width": "3835", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-208", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_097_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3835", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_097_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-208" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-209", + "@type": "sc:Canvas", + "label": "f. 98 r", + "height": "5982", + "width": "3774", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-209", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_098_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3774", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_098_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-209" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-210", + "@type": "sc:Canvas", + "label": "f. 98 v", + "height": "6010", + "width": "3830", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-210", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_098_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6010", + "width": "3830", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_098_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-210" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-211", + "@type": "sc:Canvas", + "label": "f. 99 r", + "height": "5981", + "width": "3742", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-211", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_099_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5981", + "width": "3742", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_099_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-211" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-212", + "@type": "sc:Canvas", + "label": "f. 99 v", + "height": "6030", + "width": "3883", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-212", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_099_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3883", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_099_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-212" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-213", + "@type": "sc:Canvas", + "label": "f. 100 r", + "height": "5975", + "width": "3798", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-213", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_100_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5975", + "width": "3798", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_100_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-213" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-214", + "@type": "sc:Canvas", + "label": "f. 100 v", + "height": "6031", + "width": "3787", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-214", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_100_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6031", + "width": "3787", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_100_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-214" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-215", + "@type": "sc:Canvas", + "label": "f. 101 r", + "height": "5982", + "width": "3838", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-215", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_101_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3838", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_101_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-215" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-216", + "@type": "sc:Canvas", + "label": "f. 101 v", + "height": "6018", + "width": "3775", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-216", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_101_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3775", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_101_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-216" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-217", + "@type": "sc:Canvas", + "label": "f. 102 r", + "height": "5982", + "width": "3798", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-217", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_102_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3798", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_102_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-217" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-218", + "@type": "sc:Canvas", + "label": "f. 102 v", + "height": "6018", + "width": "3835", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-218", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_102_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3835", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_102_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-218" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-219", + "@type": "sc:Canvas", + "label": "f. 103 r", + "height": "6006", + "width": "3838", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-219", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_103_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3838", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_103_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-219" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-220", + "@type": "sc:Canvas", + "label": "f. 103 v", + "height": "6006", + "width": "3823", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-220", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_103_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3823", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_103_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-220" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-221", + "@type": "sc:Canvas", + "label": "f. 104 r", + "height": "6030", + "width": "3907", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-221", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_104_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3907", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_104_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-221" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-222", + "@type": "sc:Canvas", + "label": "f. 104 v", + "height": "6006", + "width": "3883", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-222", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_104_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3883", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_104_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-222" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-223", + "@type": "sc:Canvas", + "label": "f. 105 r", + "height": "5984", + "width": "3886", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-223", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_105_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5984", + "width": "3886", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_105_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-223" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-224", + "@type": "sc:Canvas", + "label": "f. 105 v", + "height": "6022", + "width": "3840", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-224", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_105_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3840", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_105_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-224" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-225", + "@type": "sc:Canvas", + "label": "f. 106 r", + "height": "5968", + "width": "3935", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-225", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_106_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5968", + "width": "3935", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_106_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-225" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-226", + "@type": "sc:Canvas", + "label": "f. 106 v", + "height": "6030", + "width": "3883", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-226", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_106_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3883", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_106_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-226" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-227", + "@type": "sc:Canvas", + "label": "f. 107 r", + "height": "5942", + "width": "3910", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-227", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_107_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5942", + "width": "3910", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_107_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-227" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-228", + "@type": "sc:Canvas", + "label": "f. 107 v", + "height": "6012", + "width": "3883", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-228", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_107_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6012", + "width": "3883", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_107_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-228" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-229", + "@type": "sc:Canvas", + "label": "f. 108 r", + "height": "5974", + "width": "3958", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-229", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_108_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5974", + "width": "3958", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_108_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-229" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-230", + "@type": "sc:Canvas", + "label": "f. 108 v", + "height": "6042", + "width": "3907", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-230", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_108_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3907", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_108_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-230" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-231", + "@type": "sc:Canvas", + "label": "f. 109 r", + "height": "5978", + "width": "3947", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-231", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_109_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5978", + "width": "3947", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_109_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-231" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-232", + "@type": "sc:Canvas", + "label": "f. 109 v", + "height": "6036", + "width": "3895", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-232", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_109_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6036", + "width": "3895", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_109_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-232" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-233", + "@type": "sc:Canvas", + "label": "f. 110 r", + "height": "5974", + "width": "3910", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-233", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_110_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5974", + "width": "3910", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_110_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-233" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-234", + "@type": "sc:Canvas", + "label": "f. 110 v", + "height": "6034", + "width": "3887", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-234", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_110_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6034", + "width": "3887", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_110_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-234" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-235", + "@type": "sc:Canvas", + "label": "f. 111 r", + "height": "5990", + "width": "3918", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-235", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_111_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "3918", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_111_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-235" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-236", + "@type": "sc:Canvas", + "label": "f. 111 v", + "height": "6024", + "width": "3871", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-236", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_111_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6024", + "width": "3871", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_111_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-236" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-237", + "@type": "sc:Canvas", + "label": "f. 112 r", + "height": "5990", + "width": "3887", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-237", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_112_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "3887", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_112_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-237" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-238", + "@type": "sc:Canvas", + "label": "f. 112 v", + "height": "6018", + "width": "3907", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-238", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_112_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3907", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_112_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-238" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-239", + "@type": "sc:Canvas", + "label": "f. 113 r", + "height": "5966", + "width": "3910", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-239", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_113_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5966", + "width": "3910", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_113_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-239" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-240", + "@type": "sc:Canvas", + "label": "f. 113 v", + "height": "6006", + "width": "3847", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-240", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_113_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3847", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_113_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-240" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-241", + "@type": "sc:Canvas", + "label": "f. 114 r", + "height": "5998", + "width": "3855", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-241", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_114_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5998", + "width": "3855", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_114_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-241" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-242", + "@type": "sc:Canvas", + "label": "f. 114 v", + "height": "6030", + "width": "3871", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-242", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_114_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3871", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_114_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-242" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-243", + "@type": "sc:Canvas", + "label": "f. 115 r", + "height": "5968", + "width": "3901", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-243", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_115_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5968", + "width": "3901", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_115_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-243" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-244", + "@type": "sc:Canvas", + "label": "f. 115 v", + "height": "6018", + "width": "3786", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-244", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_115_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3786", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_115_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-244" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-245", + "@type": "sc:Canvas", + "label": "f. 116 r", + "height": "5966", + "width": "3926", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-245", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_116_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5966", + "width": "3926", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_116_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-245" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-246", + "@type": "sc:Canvas", + "label": "f. 116 v", + "height": "6029", + "width": "3761", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-246", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_116_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6029", + "width": "3761", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_116_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-246" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-247", + "@type": "sc:Canvas", + "label": "f. 117 r", + "height": "5999", + "width": "3918", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-247", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_117_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5999", + "width": "3918", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_117_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-247" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-248", + "@type": "sc:Canvas", + "label": "f. 117 v", + "height": "5994", + "width": "3810", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-248", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_117_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5994", + "width": "3810", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_117_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-248" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-249", + "@type": "sc:Canvas", + "label": "f. 118 r", + "height": "5967", + "width": "3879", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-249", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_118_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5967", + "width": "3879", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_118_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-249" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-250", + "@type": "sc:Canvas", + "label": "f. 118 v", + "height": "5982", + "width": "3847", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-250", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_118_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3847", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_118_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-250" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-251", + "@type": "sc:Canvas", + "label": "f. 119 r", + "height": "5990", + "width": "3871", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-251", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_119_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "3871", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_119_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-251" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-252", + "@type": "sc:Canvas", + "label": "f. 119 v", + "height": "6006", + "width": "3799", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-252", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_119_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3799", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_119_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-252" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-253", + "@type": "sc:Canvas", + "label": "f. 120 r", + "height": "5998", + "width": "3942", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-253", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_120_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5998", + "width": "3942", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_120_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-253" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-254", + "@type": "sc:Canvas", + "label": "f. 120 v", + "height": "6017", + "width": "3811", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-254", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_120_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6017", + "width": "3811", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_120_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-254" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-255", + "@type": "sc:Canvas", + "label": "f. 121 r", + "height": "5990", + "width": "3878", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-255", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_121_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "3878", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_121_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-255" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-256", + "@type": "sc:Canvas", + "label": "f. 121 v", + "height": "6030", + "width": "3824", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-256", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_121_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3824", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_121_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-256" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-257", + "@type": "sc:Canvas", + "label": "f. 122 r", + "height": "5983", + "width": "3894", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-257", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_122_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5983", + "width": "3894", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_122_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-257" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-258", + "@type": "sc:Canvas", + "label": "f. 122 v", + "height": "6030", + "width": "3845", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-258", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_122_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3845", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_122_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-258" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-259", + "@type": "sc:Canvas", + "label": "f. 123 r", + "height": "5958", + "width": "3830", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-259", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_123_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5958", + "width": "3830", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_123_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-259" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-260", + "@type": "sc:Canvas", + "label": "f. 123 v", + "height": "6006", + "width": "3823", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-260", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_123_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3823", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_123_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-260" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-261", + "@type": "sc:Canvas", + "label": "f. 124 r", + "height": "5974", + "width": "3806", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-261", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_124_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5974", + "width": "3806", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_124_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-261" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-262", + "@type": "sc:Canvas", + "label": "f. 124 v", + "height": "6018", + "width": "3835", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-262", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_124_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3835", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_124_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-262" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-263", + "@type": "sc:Canvas", + "label": "f. 125 r", + "height": "5990", + "width": "3846", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-263", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_125_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "3846", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_125_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-263" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-264", + "@type": "sc:Canvas", + "label": "f. 125 v", + "height": "6018", + "width": "3845", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-264", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_125_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3845", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_125_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-264" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-265", + "@type": "sc:Canvas", + "label": "f. 126 r", + "height": "5982", + "width": "3870", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-265", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_126_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3870", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_126_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-265" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-266", + "@type": "sc:Canvas", + "label": "f. 126 v", + "height": "6006", + "width": "3812", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-266", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_126_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3812", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_126_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-266" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-267", + "@type": "sc:Canvas", + "label": "f. 127 r", + "height": "5958", + "width": "3846", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-267", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_127_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5958", + "width": "3846", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_127_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-267" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-268", + "@type": "sc:Canvas", + "label": "f. 127 v", + "height": "5994", + "width": "3811", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-268", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_127_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5994", + "width": "3811", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_127_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-268" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-269", + "@type": "sc:Canvas", + "label": "f. 128 r", + "height": "5975", + "width": "3798", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-269", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_128_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5975", + "width": "3798", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_128_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-269" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-270", + "@type": "sc:Canvas", + "label": "f. 128 v", + "height": "6018", + "width": "3859", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-270", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_128_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3859", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_128_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-270" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-271", + "@type": "sc:Canvas", + "label": "f. 129 r", + "height": "5950", + "width": "4014", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-271", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_129_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5950", + "width": "4014", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_129_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-271" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-272", + "@type": "sc:Canvas", + "label": "f. 129 v", + "height": "6007", + "width": "3839", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-272", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_129_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6007", + "width": "3839", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_129_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-272" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-273", + "@type": "sc:Canvas", + "label": "f. 130 r", + "height": "5958", + "width": "3958", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-273", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_130_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5958", + "width": "3958", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_130_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-273" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-274", + "@type": "sc:Canvas", + "label": "f. 130 v", + "height": "6018", + "width": "3906", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-274", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_130_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3906", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_130_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-274" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-275", + "@type": "sc:Canvas", + "label": "f. 131 r", + "height": "5974", + "width": "4022", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-275", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_131_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5974", + "width": "4022", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_131_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-275" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-276", + "@type": "sc:Canvas", + "label": "f. 131 v", + "height": "5981", + "width": "3823", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-276", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_131_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5981", + "width": "3823", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_131_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-276" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-277", + "@type": "sc:Canvas", + "label": "f. 132 r", + "height": "5964", + "width": "4015", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-277", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_132_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5964", + "width": "4015", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_132_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-277" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-278", + "@type": "sc:Canvas", + "label": "f. 132 v", + "height": "5994", + "width": "3895", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-278", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_132_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5994", + "width": "3895", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_132_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-278" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-279", + "@type": "sc:Canvas", + "label": "f. 133 r", + "height": "5990", + "width": "4046", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-279", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_133_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "4046", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_133_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-279" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-280", + "@type": "sc:Canvas", + "label": "f. 133 v", + "height": "6018", + "width": "3823", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-280", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_133_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3823", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_133_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-280" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-281", + "@type": "sc:Canvas", + "label": "f. 134 r", + "height": "5990", + "width": "4086", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-281", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_134_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "4086", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_134_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-281" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-282", + "@type": "sc:Canvas", + "label": "f. 134 v", + "height": "6030", + "width": "3955", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-282", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_134_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3955", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_134_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-282" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-283", + "@type": "sc:Canvas", + "label": "f. 135 r", + "height": "5958", + "width": "4046", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-283", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_135_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5958", + "width": "4046", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_135_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-283" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-284", + "@type": "sc:Canvas", + "label": "f. 135 v", + "height": "5994", + "width": "3835", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-284", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_135_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5994", + "width": "3835", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_135_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-284" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-285", + "@type": "sc:Canvas", + "label": "f. 136 r", + "height": "5982", + "width": "3979", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-285", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_136_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3979", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_136_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-285" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-286", + "@type": "sc:Canvas", + "label": "f. 136 v", + "height": "6018", + "width": "3822", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-286", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_136_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3822", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_136_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-286" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-287", + "@type": "sc:Canvas", + "label": "f. 137 r", + "height": "5982", + "width": "3966", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-287", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_137_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3966", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_137_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-287" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-288", + "@type": "sc:Canvas", + "label": "f. 137 v", + "height": "5970", + "width": "3847", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-288", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_137_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5970", + "width": "3847", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_137_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-288" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-289", + "@type": "sc:Canvas", + "label": "f. 138 r", + "height": "5958", + "width": "4038", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-289", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_138_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5958", + "width": "4038", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_138_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-289" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-290", + "@type": "sc:Canvas", + "label": "f. 138 v", + "height": "5994", + "width": "3823", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-290", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_138_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5994", + "width": "3823", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_138_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-290" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-291", + "@type": "sc:Canvas", + "label": "f. 139 r", + "height": "5958", + "width": "4014", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-291", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_139_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5958", + "width": "4014", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_139_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-291" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-292", + "@type": "sc:Canvas", + "label": "f. 139 v", + "height": "6017", + "width": "3837", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-292", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_139_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6017", + "width": "3837", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_139_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-292" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-293", + "@type": "sc:Canvas", + "label": "f. 140 r", + "height": "5998", + "width": "4087", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-293", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_140_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5998", + "width": "4087", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_140_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-293" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-294", + "@type": "sc:Canvas", + "label": "f. 140 v", + "height": "5982", + "width": "3775", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-294", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_140_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3775", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_140_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-294" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-295", + "@type": "sc:Canvas", + "label": "f. 141 r", + "height": "5982", + "width": "4006", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-295", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_141_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "4006", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_141_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-295" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-296", + "@type": "sc:Canvas", + "label": "f. 141 v", + "height": "6042", + "width": "3799", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-296", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_141_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3799", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_141_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-296" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-297", + "@type": "sc:Canvas", + "label": "f. 142 r", + "height": "5958", + "width": "4022", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-297", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_142_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5958", + "width": "4022", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_142_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-297" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-298", + "@type": "sc:Canvas", + "label": "f. 142 v", + "height": "6006", + "width": "3811", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-298", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_142_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3811", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_142_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-298" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-299", + "@type": "sc:Canvas", + "label": "f. 143 r", + "height": "5966", + "width": "3982", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-299", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_143_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5966", + "width": "3982", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_143_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-299" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-300", + "@type": "sc:Canvas", + "label": "f. 143 v", + "height": "6006", + "width": "3823", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-300", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_143_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3823", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_143_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-300" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-301", + "@type": "sc:Canvas", + "label": "f. 144 r", + "height": "6006", + "width": "3974", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-301", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_144_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3974", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_144_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-301" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-302", + "@type": "sc:Canvas", + "label": "f. 144 v", + "height": "6006", + "width": "3811", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-302", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_144_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3811", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_144_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-302" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-303", + "@type": "sc:Canvas", + "label": "f. 145 r", + "height": "5966", + "width": "3998", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-303", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_145_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5966", + "width": "3998", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_145_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-303" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-304", + "@type": "sc:Canvas", + "label": "f. 145 v", + "height": "5994", + "width": "3823", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-304", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_145_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5994", + "width": "3823", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_145_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-304" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-305", + "@type": "sc:Canvas", + "label": "f. 146 r", + "height": "5958", + "width": "4038", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-305", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_146_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5958", + "width": "4038", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_146_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-305" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-306", + "@type": "sc:Canvas", + "label": "f. 146 v", + "height": "5994", + "width": "3835", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-306", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_146_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5994", + "width": "3835", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_146_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-306" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-307", + "@type": "sc:Canvas", + "label": "f. 147 r", + "height": "5990", + "width": "3966", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-307", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_147_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "3966", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_147_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-307" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-308", + "@type": "sc:Canvas", + "label": "f. 147 v", + "height": "5982", + "width": "3811", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-308", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_147_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3811", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_147_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-308" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-309", + "@type": "sc:Canvas", + "label": "f. 148 r", + "height": "6006", + "width": "3966", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-309", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_148_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3966", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_148_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-309" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-310", + "@type": "sc:Canvas", + "label": "f. 148 v", + "height": "6006", + "width": "3835", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-310", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_148_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3835", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_148_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-310" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-311", + "@type": "sc:Canvas", + "label": "f. 149 r", + "height": "5990", + "width": "3950", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-311", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_149_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "3950", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_149_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-311" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-312", + "@type": "sc:Canvas", + "label": "f. 149 v", + "height": "6042", + "width": "3859", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-312", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_149_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3859", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_149_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-312" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-313", + "@type": "sc:Canvas", + "label": "f. 150 r", + "height": "5958", + "width": "3982", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-313", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_150_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5958", + "width": "3982", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_150_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-313" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-314", + "@type": "sc:Canvas", + "label": "f. 150 v", + "height": "5994", + "width": "3811", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-314", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_150_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5994", + "width": "3811", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_150_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-314" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-315", + "@type": "sc:Canvas", + "label": "f. 151 r", + "height": "5990", + "width": "4014", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-315", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_151_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "4014", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_151_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-315" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-316", + "@type": "sc:Canvas", + "label": "f. 151 v", + "height": "5994", + "width": "3979", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-316", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_151_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5994", + "width": "3979", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_151_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-316" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-317", + "@type": "sc:Canvas", + "label": "f. 152 r", + "height": "6014", + "width": "4062", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-317", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_152_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6014", + "width": "4062", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_152_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-317" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-318", + "@type": "sc:Canvas", + "label": "f. 152 v", + "height": "5982", + "width": "4003", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-318", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_152_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "4003", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_152_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-318" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-319", + "@type": "sc:Canvas", + "label": "f. 153 r", + "height": "5990", + "width": "4022", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-319", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_153_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "4022", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_153_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-319" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-320", + "@type": "sc:Canvas", + "label": "f. 153 v", + "height": "6006", + "width": "3967", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-320", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_153_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3967", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_153_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-320" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-321", + "@type": "sc:Canvas", + "label": "f. 154 r", + "height": "6014", + "width": "3998", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-321", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_154_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6014", + "width": "3998", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_154_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-321" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-322", + "@type": "sc:Canvas", + "label": "f. 154 v", + "height": "6018", + "width": "3943", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-322", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_154_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3943", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_154_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-322" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-323", + "@type": "sc:Canvas", + "label": "f. 155 r", + "height": "6006", + "width": "4038", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-323", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_155_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "4038", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_155_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-323" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-324", + "@type": "sc:Canvas", + "label": "f. 155 v", + "height": "6018", + "width": "4015", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-324", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_155_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "4015", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_155_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-324" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-325", + "@type": "sc:Canvas", + "label": "f. 156 r", + "height": "5990", + "width": "4046", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-325", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_156_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "4046", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_156_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-325" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-326", + "@type": "sc:Canvas", + "label": "f. 156 v", + "height": "5982", + "width": "4015", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-326", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_156_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "4015", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_156_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-326" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-327", + "@type": "sc:Canvas", + "label": "f. 157 r", + "height": "6006", + "width": "4015", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-327", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_157_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "4015", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_157_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-327" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-328", + "@type": "sc:Canvas", + "label": "f. 157 v", + "height": "5994", + "width": "3931", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-328", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_157_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5994", + "width": "3931", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_157_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-328" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-329", + "@type": "sc:Canvas", + "label": "f. 158 r", + "height": "6006", + "width": "4022", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-329", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_158_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "4022", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_158_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-329" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-330", + "@type": "sc:Canvas", + "label": "f. 158 v", + "height": "6006", + "width": "4015", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-330", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_158_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "4015", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_158_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-330" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-331", + "@type": "sc:Canvas", + "label": "f. 159 r", + "height": "5982", + "width": "4014", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-331", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_159_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "4014", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_159_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-331" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-332", + "@type": "sc:Canvas", + "label": "f. 159 v", + "height": "6030", + "width": "3943", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-332", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_159_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3943", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_159_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-332" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-333", + "@type": "sc:Canvas", + "label": "f. 160 r", + "height": "5990", + "width": "4014", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-333", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_160_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "4014", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_160_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-333" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-334", + "@type": "sc:Canvas", + "label": "f. 160 v", + "height": "5982", + "width": "3991", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-334", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_160_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3991", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_160_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-334" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-335", + "@type": "sc:Canvas", + "label": "f. 161 r", + "height": "5974", + "width": "4054", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-335", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_161_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5974", + "width": "4054", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_161_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-335" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-336", + "@type": "sc:Canvas", + "label": "f. 161 v", + "height": "6019", + "width": "4040", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-336", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_161_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6019", + "width": "4040", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_161_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-336" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-337", + "@type": "sc:Canvas", + "label": "f. 162 r", + "height": "5998", + "width": "4014", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-337", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_162_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5998", + "width": "4014", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_162_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-337" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-338", + "@type": "sc:Canvas", + "label": "f. 162 v", + "height": "6006", + "width": "3979", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-338", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_162_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3979", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_162_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-338" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-339", + "@type": "sc:Canvas", + "label": "f. 163 r", + "height": "5966", + "width": "4039", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-339", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_163_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5966", + "width": "4039", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_163_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-339" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-340", + "@type": "sc:Canvas", + "label": "f. 163 v", + "height": "6006", + "width": "4039", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-340", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_163_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "4039", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_163_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-340" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-341", + "@type": "sc:Canvas", + "label": "f. 164 r", + "height": "6022", + "width": "4014", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-341", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_164_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "4014", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_164_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-341" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-342", + "@type": "sc:Canvas", + "label": "f. 164 v", + "height": "6018", + "width": "3991", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-342", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_164_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3991", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_164_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-342" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-343", + "@type": "sc:Canvas", + "label": "f. 165 r", + "height": "6030", + "width": "3974", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-343", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_165_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3974", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_165_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-343" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-344", + "@type": "sc:Canvas", + "label": "f. 165 v", + "height": "6006", + "width": "3991", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-344", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_165_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3991", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_165_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-344" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-345", + "@type": "sc:Canvas", + "label": "f. 166 r", + "height": "6006", + "width": "3982", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-345", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_166_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3982", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_166_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-345" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-346", + "@type": "sc:Canvas", + "label": "f. 166 v", + "height": "5982", + "width": "3991", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-346", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_166_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3991", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_166_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-346" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-347", + "@type": "sc:Canvas", + "label": "f. 167 r", + "height": "5982", + "width": "3966", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-347", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_167_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3966", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_167_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-347" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-348", + "@type": "sc:Canvas", + "label": "f. 167 v", + "height": "5958", + "width": "3979", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-348", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_167_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5958", + "width": "3979", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_167_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-348" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-349", + "@type": "sc:Canvas", + "label": "f. 168 r", + "height": "5950", + "width": "3982", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-349", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_168_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5950", + "width": "3982", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_168_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-349" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-350", + "@type": "sc:Canvas", + "label": "f. 168 v", + "height": "5970", + "width": "4003", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-350", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_168_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5970", + "width": "4003", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_168_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-350" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-351", + "@type": "sc:Canvas", + "label": "f. 169 r", + "height": "5958", + "width": "4046", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-351", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_169_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5958", + "width": "4046", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_169_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-351" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-352", + "@type": "sc:Canvas", + "label": "f. 169 v", + "height": "5994", + "width": "3979", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-352", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_169_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5994", + "width": "3979", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_169_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-352" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-353", + "@type": "sc:Canvas", + "label": "f. 170 r", + "height": "6022", + "width": "4046", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-353", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_170_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "4046", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_170_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-353" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-354", + "@type": "sc:Canvas", + "label": "f. 170 v", + "height": "5970", + "width": "3931", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-354", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_170_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5970", + "width": "3931", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_170_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-354" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-355", + "@type": "sc:Canvas", + "label": "f. 171 r", + "height": "5982", + "width": "3886", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-355", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_171_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3886", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_171_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-355" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-356", + "@type": "sc:Canvas", + "label": "f. 171 v", + "height": "5982", + "width": "3931", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-356", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_171_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3931", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_171_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-356" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-357", + "@type": "sc:Canvas", + "label": "f. 172 r", + "height": "5990", + "width": "3950", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-357", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_172_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "3950", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_172_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-357" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-358", + "@type": "sc:Canvas", + "label": "f. 172 v", + "height": "5994", + "width": "3895", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-358", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_172_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5994", + "width": "3895", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_172_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-358" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-359", + "@type": "sc:Canvas", + "label": "f. 173 r", + "height": "6030", + "width": "4014", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-359", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_173_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "4014", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_173_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-359" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-360", + "@type": "sc:Canvas", + "label": "f. 173 v", + "height": "6006", + "width": "3895", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-360", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_173_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3895", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_173_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-360" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-361", + "@type": "sc:Canvas", + "label": "f. 174 r", + "height": "5990", + "width": "3950", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-361", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_174_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "3950", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_174_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-361" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-362", + "@type": "sc:Canvas", + "label": "f. 174 v", + "height": "5982", + "width": "3991", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-362", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_174_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3991", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_174_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-362" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-363", + "@type": "sc:Canvas", + "label": "f. 175 r", + "height": "5966", + "width": "4006", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-363", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_175_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5966", + "width": "4006", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_175_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-363" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-364", + "@type": "sc:Canvas", + "label": "f. 175 v", + "height": "5946", + "width": "3955", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-364", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_175_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5946", + "width": "3955", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_175_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-364" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-365", + "@type": "sc:Canvas", + "label": "f. 176 r", + "height": "5942", + "width": "3982", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-365", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_176_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5942", + "width": "3982", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_176_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-365" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-366", + "@type": "sc:Canvas", + "label": "f. 176 v", + "height": "5982", + "width": "3967", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-366", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_176_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3967", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_176_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-366" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-367", + "@type": "sc:Canvas", + "label": "f. 177 r", + "height": "5990", + "width": "3942", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-367", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_177_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "3942", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_177_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-367" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-368", + "@type": "sc:Canvas", + "label": "f. 177 v", + "height": "5934", + "width": "3955", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-368", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_177_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5934", + "width": "3955", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_177_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-368" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-369", + "@type": "sc:Canvas", + "label": "f. 178 r", + "height": "5926", + "width": "3998", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-369", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_178_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5926", + "width": "3998", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_178_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-369" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-370", + "@type": "sc:Canvas", + "label": "f. 178 v", + "height": "5958", + "width": "3967", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-370", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_178_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5958", + "width": "3967", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_178_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-370" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-371", + "@type": "sc:Canvas", + "label": "f. 179 r", + "height": "6006", + "width": "3886", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-371", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_179_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3886", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_179_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-371" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-372", + "@type": "sc:Canvas", + "label": "f. 179 v", + "height": "6018", + "width": "3907", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-372", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_179_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3907", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_179_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-372" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-373", + "@type": "sc:Canvas", + "label": "f. 180 r", + "height": "6330", + "width": "4201", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-373", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_180_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6330", + "width": "4201", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_180_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-373" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-374", + "@type": "sc:Canvas", + "label": "f. 180 v", + "height": "5982", + "width": "3931", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-374", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_180_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3931", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_180_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-374" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-375", + "@type": "sc:Canvas", + "label": "f. 181 r", + "height": "5998", + "width": "4054", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-375", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_181_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5998", + "width": "4054", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_181_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-375" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-376", + "@type": "sc:Canvas", + "label": "f. 181 v", + "height": "6030", + "width": "3991", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-376", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_181_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3991", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_181_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-376" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-377", + "@type": "sc:Canvas", + "label": "f. 182 r", + "height": "5950", + "width": "4062", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-377", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_182_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5950", + "width": "4062", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_182_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-377" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-378", + "@type": "sc:Canvas", + "label": "f. 182 v", + "height": "5994", + "width": "3967", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-378", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_182_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5994", + "width": "3967", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_182_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-378" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-379", + "@type": "sc:Canvas", + "label": "f. 183 r", + "height": "5942", + "width": "4006", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-379", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_183_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5942", + "width": "4006", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_183_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-379" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-380", + "@type": "sc:Canvas", + "label": "f. 183 v", + "height": "6030", + "width": "3979", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-380", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_183_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3979", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_183_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-380" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-381", + "@type": "sc:Canvas", + "label": "f. 184 r", + "height": "6022", + "width": "4014", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-381", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_184_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "4014", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_184_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-381" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-382", + "@type": "sc:Canvas", + "label": "f. 184 v", + "height": "6066", + "width": "3967", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-382", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_184_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3967", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_184_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-382" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-383", + "@type": "sc:Canvas", + "label": "f. 185 r", + "height": "5966", + "width": "3974", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-383", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_185_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5966", + "width": "3974", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_185_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-383" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-384", + "@type": "sc:Canvas", + "label": "f. 185 v", + "height": "5982", + "width": "3979", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-384", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_185_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3979", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_185_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-384" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-385", + "@type": "sc:Canvas", + "label": "f. 186 r", + "height": "5966", + "width": "4038", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-385", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_186_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5966", + "width": "4038", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_186_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-385" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-386", + "@type": "sc:Canvas", + "label": "f. 186 v", + "height": "5982", + "width": "3919", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-386", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_186_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3919", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_186_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-386" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-387", + "@type": "sc:Canvas", + "label": "f. 187 r", + "height": "5982", + "width": "3990", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-387", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_187_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3990", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_187_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-387" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-388", + "@type": "sc:Canvas", + "label": "f. 187 v", + "height": "6018", + "width": "3967", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-388", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_187_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3967", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_187_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-388" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-389", + "@type": "sc:Canvas", + "label": "f. 188 r", + "height": "5982", + "width": "3926", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-389", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_188_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3926", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_188_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-389" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-390", + "@type": "sc:Canvas", + "label": "f. 188 v", + "height": "6030", + "width": "3931", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-390", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_188_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3931", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_188_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-390" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-391", + "@type": "sc:Canvas", + "label": "f. 189 r", + "height": "5982", + "width": "4006", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-391", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_189_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "4006", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_189_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-391" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-392", + "@type": "sc:Canvas", + "label": "f. 189 v", + "height": "5982", + "width": "3918", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-392", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_189_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3918", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_189_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-392" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-393", + "@type": "sc:Canvas", + "label": "f. 190 r", + "height": "5990", + "width": "3958", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-393", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_190_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "3958", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_190_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-393" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-394", + "@type": "sc:Canvas", + "label": "f. 190 v", + "height": "6006", + "width": "3907", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-394", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_190_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3907", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_190_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-394" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-395", + "@type": "sc:Canvas", + "label": "f. 191 r", + "height": "5998", + "width": "3918", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-395", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_191_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5998", + "width": "3918", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_191_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-395" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-396", + "@type": "sc:Canvas", + "label": "f. 191 v", + "height": "6006", + "width": "3895", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-396", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_191_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3895", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_191_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-396" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-397", + "@type": "sc:Canvas", + "label": "f. 192 r", + "height": "5966", + "width": "3958", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-397", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_192_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5966", + "width": "3958", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_192_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-397" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-398", + "@type": "sc:Canvas", + "label": "f. 192 v", + "height": "6042", + "width": "3919", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-398", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_192_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3919", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_192_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-398" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-399", + "@type": "sc:Canvas", + "label": "f. 193 r", + "height": "5990", + "width": "3966", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-399", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_193_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "3966", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_193_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-399" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-400", + "@type": "sc:Canvas", + "label": "f. 193 v", + "height": "5994", + "width": "3943", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-400", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_193_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5994", + "width": "3943", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_193_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-400" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-401", + "@type": "sc:Canvas", + "label": "f. 194 r", + "height": "6006", + "width": "3934", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-401", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_194_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3934", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_194_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-401" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-402", + "@type": "sc:Canvas", + "label": "f. 194 v", + "height": "5982", + "width": "3943", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-402", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_194_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3943", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_194_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-402" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-403", + "@type": "sc:Canvas", + "label": "f. 195 r", + "height": "5998", + "width": "3982", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-403", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_195_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5998", + "width": "3982", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_195_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-403" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-404", + "@type": "sc:Canvas", + "label": "f. 195 v", + "height": "5990", + "width": "3918", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-404", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_195_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "3918", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_195_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-404" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-405", + "@type": "sc:Canvas", + "label": "f. 196 r", + "height": "5982", + "width": "3926", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-405", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_196_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3926", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_196_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-405" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-406", + "@type": "sc:Canvas", + "label": "f. 196 v", + "height": "5983", + "width": "3919", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-406", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_196_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5983", + "width": "3919", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_196_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-406" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-407", + "@type": "sc:Canvas", + "label": "f. 197 r", + "height": "5966", + "width": "3862", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-407", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_197_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5966", + "width": "3862", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_197_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-407" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-408", + "@type": "sc:Canvas", + "label": "f. 197 v", + "height": "6042", + "width": "3967", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-408", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_197_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3967", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_197_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-408" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-409", + "@type": "sc:Canvas", + "label": "f. 198 r", + "height": "6006", + "width": "3998", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-409", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_198_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3998", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_198_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-409" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-410", + "@type": "sc:Canvas", + "label": "f. 198 v", + "height": "6030", + "width": "3955", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-410", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_198_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3955", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_198_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-410" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-411", + "@type": "sc:Canvas", + "label": "f. 199 r", + "height": "5982", + "width": "3950", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-411", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_199_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3950", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_199_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-411" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-412", + "@type": "sc:Canvas", + "label": "f. 199 v", + "height": "6030", + "width": "3931", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-412", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_199_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3931", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_199_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-412" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-413", + "@type": "sc:Canvas", + "label": "f. 200 r", + "height": "6006", + "width": "3902", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-413", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_200_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3902", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_200_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-413" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-414", + "@type": "sc:Canvas", + "label": "f. 200 v", + "height": "5982", + "width": "3955", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-414", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_200_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3955", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_200_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-414" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-415", + "@type": "sc:Canvas", + "label": "f. 201 r", + "height": "6022", + "width": "3854", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-415", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_201_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3854", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_201_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-415" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-416", + "@type": "sc:Canvas", + "label": "f. 201 v", + "height": "6006", + "width": "3871", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-416", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_201_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3871", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_201_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-416" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-417", + "@type": "sc:Canvas", + "label": "f. 202 r", + "height": "5990", + "width": "3894", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-417", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_202_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "3894", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_202_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-417" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-418", + "@type": "sc:Canvas", + "label": "f. 202 v", + "height": "5982", + "width": "3931", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-418", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_202_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3931", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_202_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-418" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-419", + "@type": "sc:Canvas", + "label": "f. 203 r", + "height": "6022", + "width": "3910", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-419", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_203_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3910", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_203_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-419" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-420", + "@type": "sc:Canvas", + "label": "f. 203 v", + "height": "5994", + "width": "3859", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-420", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_203_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5994", + "width": "3859", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_203_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-420" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-421", + "@type": "sc:Canvas", + "label": "f. 204 r", + "height": "6022", + "width": "3950", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-421", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_204_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3950", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_204_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-421" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-422", + "@type": "sc:Canvas", + "label": "f. 204 v", + "height": "6054", + "width": "3907", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-422", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_204_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3907", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_204_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-422" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-423", + "@type": "sc:Canvas", + "label": "f. 205 r", + "height": "5990", + "width": "3910", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-423", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_205_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "3910", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_205_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-423" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-424", + "@type": "sc:Canvas", + "label": "f. 205 v", + "height": "5994", + "width": "3919", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-424", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_205_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5994", + "width": "3919", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_205_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-424" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-425", + "@type": "sc:Canvas", + "label": "f. 206 r", + "height": "6006", + "width": "3862", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-425", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_206_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3862", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_206_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-425" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-426", + "@type": "sc:Canvas", + "label": "f. 206 v", + "height": "6018", + "width": "3919", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-426", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_206_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3919", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_206_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-426" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-427", + "@type": "sc:Canvas", + "label": "f. 207 r", + "height": "6014", + "width": "3918", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-427", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_207_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6014", + "width": "3918", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_207_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-427" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-428", + "@type": "sc:Canvas", + "label": "f. 207 v", + "height": "5988", + "width": "3895", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-428", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_207_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5988", + "width": "3895", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_207_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-428" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-429", + "@type": "sc:Canvas", + "label": "f. 208 r", + "height": "5990", + "width": "3942", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-429", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_208_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "3942", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_208_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-429" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-430", + "@type": "sc:Canvas", + "label": "f. 208 v", + "height": "5970", + "width": "3967", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-430", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_208_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5970", + "width": "3967", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_208_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-430" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-431", + "@type": "sc:Canvas", + "label": "f. 209 r", + "height": "6022", + "width": "3854", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-431", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_209_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3854", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_209_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-431" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-432", + "@type": "sc:Canvas", + "label": "f. 209 v", + "height": "6042", + "width": "3859", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-432", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_209_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3859", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_209_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-432" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-433", + "@type": "sc:Canvas", + "label": "f. 210 r", + "height": "6006", + "width": "3967", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-433", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_210_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3967", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_210_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-433" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-434", + "@type": "sc:Canvas", + "label": "f. 210 v", + "height": "6006", + "width": "3895", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-434", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_210_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3895", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_210_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-434" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-435", + "@type": "sc:Canvas", + "label": "f. 211 r", + "height": "6018", + "width": "3875", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-435", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_211_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3875", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_211_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-435" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-436", + "@type": "sc:Canvas", + "label": "f. 211 v", + "height": "6030", + "width": "3919", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-436", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_211_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3919", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_211_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-436" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-437", + "@type": "sc:Canvas", + "label": "f. 212 r", + "height": "5974", + "width": "3934", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-437", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_212_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5974", + "width": "3934", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_212_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-437" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-438", + "@type": "sc:Canvas", + "label": "f. 212 v", + "height": "6030", + "width": "3955", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-438", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_212_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3955", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_212_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-438" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-439", + "@type": "sc:Canvas", + "label": "f. 213 r", + "height": "5998", + "width": "3918", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-439", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_213_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5998", + "width": "3918", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_213_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-439" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-440", + "@type": "sc:Canvas", + "label": "f. 213 v", + "height": "6006", + "width": "4003", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-440", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_213_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "4003", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_213_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-440" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-441", + "@type": "sc:Canvas", + "label": "f. 214 r", + "height": "6014", + "width": "3902", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-441", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_214_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6014", + "width": "3902", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_214_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-441" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-442", + "@type": "sc:Canvas", + "label": "f. 214 v", + "height": "6006", + "width": "3907", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-442", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_214_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3907", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_214_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-442" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-443", + "@type": "sc:Canvas", + "label": "f. 215 r", + "height": "5982", + "width": "3907", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-443", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_215_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3907", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_215_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-443" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-444", + "@type": "sc:Canvas", + "label": "f. 215 v", + "height": "6018", + "width": "3943", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-444", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_215_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3943", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_215_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-444" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-445", + "@type": "sc:Canvas", + "label": "f. 216 r", + "height": "6046", + "width": "3862", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-445", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_216_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6046", + "width": "3862", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_216_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-445" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-446", + "@type": "sc:Canvas", + "label": "f. 216 v", + "height": "6018", + "width": "3919", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-446", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_216_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3919", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_216_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-446" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-447", + "@type": "sc:Canvas", + "label": "f. 217 r", + "height": "6006", + "width": "3902", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-447", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_217_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3902", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_217_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-447" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-448", + "@type": "sc:Canvas", + "label": "f. 217 v", + "height": "6006", + "width": "3991", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-448", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_217_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3991", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_217_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-448" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-449", + "@type": "sc:Canvas", + "label": "f. 218 r", + "height": "6022", + "width": "3838", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-449", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_218_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3838", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_218_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-449" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-450", + "@type": "sc:Canvas", + "label": "f. 218 v", + "height": "6018", + "width": "3967", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-450", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_218_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3967", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_218_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-450" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-451", + "@type": "sc:Canvas", + "label": "f. 219 r", + "height": "6046", + "width": "3830", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-451", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_219_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6046", + "width": "3830", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_219_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-451" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-452", + "@type": "sc:Canvas", + "label": "f. 219 v", + "height": "6030", + "width": "3955", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-452", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_219_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3955", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_219_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-452" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-453", + "@type": "sc:Canvas", + "label": "f. 220 r", + "height": "6006", + "width": "3958", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-453", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_220_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3958", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_220_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-453" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-454", + "@type": "sc:Canvas", + "label": "f. 220 v", + "height": "5945", + "width": "4087", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-454", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_220_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5945", + "width": "4087", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_220_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-454" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-455", + "@type": "sc:Canvas", + "label": "f. 221 r", + "height": "6022", + "width": "3910", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-455", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_221_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3910", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_221_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-455" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-456", + "@type": "sc:Canvas", + "label": "f. 221 v", + "height": "6030", + "width": "3943", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-456", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_221_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3943", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_221_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-456" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-457", + "@type": "sc:Canvas", + "label": "f. 222 r", + "height": "5998", + "width": "3950", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-457", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_222_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5998", + "width": "3950", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_222_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-457" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-458", + "@type": "sc:Canvas", + "label": "f. 222 v", + "height": "5995", + "width": "4075", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-458", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_222_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5995", + "width": "4075", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_222_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-458" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-459", + "@type": "sc:Canvas", + "label": "f. 223 r", + "height": "6014", + "width": "3926", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-459", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_223_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6014", + "width": "3926", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_223_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-459" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-460", + "@type": "sc:Canvas", + "label": "f. 223 v", + "height": "5966", + "width": "4031", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-460", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_223_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5966", + "width": "4031", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_223_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-460" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-461", + "@type": "sc:Canvas", + "label": "f. 224 r", + "height": "6022", + "width": "3926", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-461", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_224_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3926", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_224_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-461" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-462", + "@type": "sc:Canvas", + "label": "f. 224 v", + "height": "6042", + "width": "4003", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-462", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_224_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "4003", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_224_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-462" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-463", + "@type": "sc:Canvas", + "label": "f. 225 r", + "height": "6006", + "width": "3998", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-463", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_225_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3998", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_225_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-463" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-464", + "@type": "sc:Canvas", + "label": "f. 225 v", + "height": "6006", + "width": "4015", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-464", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_225_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "4015", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_225_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-464" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-465", + "@type": "sc:Canvas", + "label": "f. 226 r", + "height": "5958", + "width": "3974", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-465", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_226_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5958", + "width": "3974", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_226_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-465" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-466", + "@type": "sc:Canvas", + "label": "f. 226 v", + "height": "5982", + "width": "3967", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-466", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_226_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3967", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_226_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-466" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-467", + "@type": "sc:Canvas", + "label": "f. 227 r", + "height": "6022", + "width": "3918", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-467", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_227_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3918", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_227_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-467" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-468", + "@type": "sc:Canvas", + "label": "f. 227 v", + "height": "6038", + "width": "3942", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-468", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_227_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6038", + "width": "3942", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_227_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-468" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-469", + "@type": "sc:Canvas", + "label": "f. 228 r", + "height": "6042", + "width": "3955", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-469", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_228_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3955", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_228_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-469" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-470", + "@type": "sc:Canvas", + "label": "f. 228 v", + "height": "6054", + "width": "3982", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-470", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_228_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3982", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_228_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-470" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-471", + "@type": "sc:Canvas", + "label": "f. 229 r", + "height": "6018", + "width": "3955", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-471", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_229_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3955", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_229_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-471" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-472", + "@type": "sc:Canvas", + "label": "f. 229 v", + "height": "6006", + "width": "3931", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-472", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_229_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3931", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_229_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-472" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-473", + "@type": "sc:Canvas", + "label": "f. 230 r", + "height": "6006", + "width": "3958", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-473", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_230_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3958", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_230_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-473" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-474", + "@type": "sc:Canvas", + "label": "f. 230 v", + "height": "5994", + "width": "3907", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-474", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_230_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5994", + "width": "3907", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_230_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-474" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-475", + "@type": "sc:Canvas", + "label": "f. 231 r", + "height": "6046", + "width": "3934", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-475", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_231_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6046", + "width": "3934", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_231_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-475" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-476", + "@type": "sc:Canvas", + "label": "f. 231 v", + "height": "6018", + "width": "3895", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-476", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_231_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3895", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_231_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-476" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-477", + "@type": "sc:Canvas", + "label": "f. 232 r", + "height": "6014", + "width": "3894", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-477", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_232_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6014", + "width": "3894", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_232_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-477" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-478", + "@type": "sc:Canvas", + "label": "f. 232 v", + "height": "6054", + "width": "3943", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-478", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_232_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3943", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_232_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-478" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-479", + "@type": "sc:Canvas", + "label": "f. 233 r", + "height": "5998", + "width": "3910", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-479", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_233_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5998", + "width": "3910", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_233_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-479" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-480", + "@type": "sc:Canvas", + "label": "f. 233 v", + "height": "5982", + "width": "3955", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-480", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_233_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3955", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_233_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-480" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-481", + "@type": "sc:Canvas", + "label": "f. 234 r", + "height": "6054", + "width": "3886", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-481", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_234_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3886", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_234_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-481" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-482", + "@type": "sc:Canvas", + "label": "f. 234 v", + "height": "6006", + "width": "3967", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-482", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_234_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3967", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_234_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-482" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-483", + "@type": "sc:Canvas", + "label": "f. 235 r", + "height": "6014", + "width": "3958", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-483", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_235_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6014", + "width": "3958", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_235_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-483" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-484", + "@type": "sc:Canvas", + "label": "f. 235 v", + "height": "6006", + "width": "4027", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-484", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_235_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "4027", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_235_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-484" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-485", + "@type": "sc:Canvas", + "label": "f. 236 r", + "height": "6038", + "width": "3894", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-485", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_236_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6038", + "width": "3894", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_236_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-485" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-486", + "@type": "sc:Canvas", + "label": "f. 236 v", + "height": "6030", + "width": "3967", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-486", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_236_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3967", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_236_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-486" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-487", + "@type": "sc:Canvas", + "label": "f. 237 r", + "height": "6030", + "width": "3870", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-487", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_237_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3870", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_237_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-487" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-488", + "@type": "sc:Canvas", + "label": "f. 237 v", + "height": "6018", + "width": "3967", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-488", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_237_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3967", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_237_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-488" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-489", + "@type": "sc:Canvas", + "label": "f. 238 r", + "height": "5990", + "width": "3910", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-489", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_238_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "3910", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_238_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-489" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-490", + "@type": "sc:Canvas", + "label": "f. 238 v", + "height": "6006", + "width": "4015", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-490", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_238_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "4015", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_238_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-490" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-491", + "@type": "sc:Canvas", + "label": "f. 239 r", + "height": "6022", + "width": "3910", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-491", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_239_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3910", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_239_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-491" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-492", + "@type": "sc:Canvas", + "label": "f. 239 v", + "height": "6018", + "width": "3991", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-492", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_239_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3991", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_239_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-492" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-493", + "@type": "sc:Canvas", + "label": "f. 240 r", + "height": "6030", + "width": "3886", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-493", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_240_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3886", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_240_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-493" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-494", + "@type": "sc:Canvas", + "label": "f. 240 v", + "height": "6066", + "width": "3991", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-494", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_240_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3991", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_240_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-494" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-495", + "@type": "sc:Canvas", + "label": "f. 241 r", + "height": "5974", + "width": "3934", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-495", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_241_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5974", + "width": "3934", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_241_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-495" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-496", + "@type": "sc:Canvas", + "label": "f. 241 v", + "height": "6030", + "width": "3991", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-496", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_241_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3991", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_241_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-496" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-497", + "@type": "sc:Canvas", + "label": "f. 242 r", + "height": "6006", + "width": "3918", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-497", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_242_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3918", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_242_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-497" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-498", + "@type": "sc:Canvas", + "label": "f. 242 v", + "height": "6030", + "width": "3991", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-498", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_242_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3991", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_242_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-498" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-499", + "@type": "sc:Canvas", + "label": "f. 243 r", + "height": "6030", + "width": "3910", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-499", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_243_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3910", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_243_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-499" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-500", + "@type": "sc:Canvas", + "label": "f. 243 v", + "height": "6018", + "width": "3907", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-500", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_243_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3907", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_243_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-500" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-501", + "@type": "sc:Canvas", + "label": "f. 244 r", + "height": "5982", + "width": "3934", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-501", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_244_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3934", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_244_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-501" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-502", + "@type": "sc:Canvas", + "label": "f. 244 v", + "height": "6006", + "width": "3943", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-502", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_244_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3943", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_244_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-502" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-503", + "@type": "sc:Canvas", + "label": "f. 245 r", + "height": "5966", + "width": "3950", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-503", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_245_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5966", + "width": "3950", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_245_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-503" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-504", + "@type": "sc:Canvas", + "label": "f. 245 v", + "height": "5994", + "width": "3991", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-504", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_245_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5994", + "width": "3991", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_245_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-504" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-505", + "@type": "sc:Canvas", + "label": "f. 246 r", + "height": "6006", + "width": "3854", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-505", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_246_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3854", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_246_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-505" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-506", + "@type": "sc:Canvas", + "label": "f. 246 v", + "height": "6018", + "width": "3943", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-506", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_246_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3943", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_246_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-506" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-507", + "@type": "sc:Canvas", + "label": "f. 247 r", + "height": "6006", + "width": "3950", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-507", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_247_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3950", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_247_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-507" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-508", + "@type": "sc:Canvas", + "label": "f. 247 v", + "height": "6006", + "width": "3967", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-508", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_247_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3967", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_247_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-508" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-509", + "@type": "sc:Canvas", + "label": "f. 248 r", + "height": "6022", + "width": "3918", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-509", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_248_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3918", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_248_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-509" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-510", + "@type": "sc:Canvas", + "label": "f. 248 v", + "height": "6006", + "width": "3979", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-510", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_248_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3979", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_248_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-510" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-511", + "@type": "sc:Canvas", + "label": "f. 249 r", + "height": "5998", + "width": "3902", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-511", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_249_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5998", + "width": "3902", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_249_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-511" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-512", + "@type": "sc:Canvas", + "label": "f. 249 v", + "height": "6018", + "width": "3979", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-512", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_249_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3979", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_249_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-512" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-513", + "@type": "sc:Canvas", + "label": "f. 250 r", + "height": "6014", + "width": "3974", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-513", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_250_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6014", + "width": "3974", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_250_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-513" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-514", + "@type": "sc:Canvas", + "label": "f. 250 v", + "height": "6066", + "width": "4027", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-514", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_250_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "4027", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_250_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-514" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-515", + "@type": "sc:Canvas", + "label": "f. 251 r", + "height": "6022", + "width": "3950", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-515", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_251_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3950", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_251_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-515" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-516", + "@type": "sc:Canvas", + "label": "f. 251 v", + "height": "6034", + "width": "3991", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-516", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_251_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6034", + "width": "3991", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_251_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-516" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-517", + "@type": "sc:Canvas", + "label": "f. 252 r", + "height": "6013", + "width": "3974", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-517", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_252_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6013", + "width": "3974", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_252_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-517" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-518", + "@type": "sc:Canvas", + "label": "f. 252 v", + "height": "6018", + "width": "4015", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-518", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_252_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "4015", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_252_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-518" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-519", + "@type": "sc:Canvas", + "label": "f. 253 r", + "height": "6022", + "width": "3974", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-519", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_253_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3974", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_253_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-519" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-520", + "@type": "sc:Canvas", + "label": "f. 253 v", + "height": "6054", + "width": "3967", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-520", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_253_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3967", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_253_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-520" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Parker/fh878gz0315/list/text-f253v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-521", + "@type": "sc:Canvas", + "label": "f. 254 r", + "height": "6030", + "width": "3950", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-521", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_254_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3950", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_254_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-521" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Parker/fh878gz0315/list/text-f254r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-522", + "@type": "sc:Canvas", + "label": "f. 254 v", + "height": "6030", + "width": "3991", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-522", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_254_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3991", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_254_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-522" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Parker/fh878gz0315/list/text-f254v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-523", + "@type": "sc:Canvas", + "label": "f. 255 r", + "height": "6014", + "width": "3950", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-523", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_255_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6014", + "width": "3950", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_255_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-523" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Parker/fh878gz0315/list/text-f255r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-524", + "@type": "sc:Canvas", + "label": "f. 255 v", + "height": "6078", + "width": "3992", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-524", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_255_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6078", + "width": "3992", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_255_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-524" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Parker/fh878gz0315/list/text-f255v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-525", + "@type": "sc:Canvas", + "label": "f. 256 r", + "height": "6006", + "width": "3934", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-525", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_256_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3934", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_256_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-525" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Parker/fh878gz0315/list/text-f256r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-526", + "@type": "sc:Canvas", + "label": "f. 256 v", + "height": "6067", + "width": "4003", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-526", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_256_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6067", + "width": "4003", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_256_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-526" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Parker/fh878gz0315/list/text-f256v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-527", + "@type": "sc:Canvas", + "label": "f. 257 r", + "height": "6014", + "width": "3926", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-527", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_257_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6014", + "width": "3926", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_257_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-527" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Parker/fh878gz0315/list/text-f257r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-528", + "@type": "sc:Canvas", + "label": "f. 257 v", + "height": "6018", + "width": "3991", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-528", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_257_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3991", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_257_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-528" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Parker/fh878gz0315/list/text-f257v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-529", + "@type": "sc:Canvas", + "label": "f. 258 r", + "height": "6006", + "width": "3910", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-529", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_258_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3910", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_258_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-529" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Parker/fh878gz0315/list/text-f258r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-530", + "@type": "sc:Canvas", + "label": "f. 258 v", + "height": "6054", + "width": "4027", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-530", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_258_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "4027", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_258_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-530" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Parker/fh878gz0315/list/text-f258v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-531", + "@type": "sc:Canvas", + "label": "f. 259 r", + "height": "6030", + "width": "3910", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-531", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_259_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3910", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_259_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-531" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Parker/fh878gz0315/list/text-f259r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-532", + "@type": "sc:Canvas", + "label": "f. 259 v", + "height": "6054", + "width": "4051", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-532", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_259_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "4051", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_259_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-532" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Parker/fh878gz0315/list/text-f259v.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-533", + "@type": "sc:Canvas", + "label": "f. 260 r", + "height": "5991", + "width": "3934", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-533", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_260_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5991", + "width": "3934", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_260_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-533" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-534", + "@type": "sc:Canvas", + "label": "f. 260 v", + "height": "6030", + "width": "4003", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-534", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_260_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "4003", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_260_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-534" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-535", + "@type": "sc:Canvas", + "label": "f. 261 r", + "height": "6006", + "width": "3942", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-535", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_261_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3942", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_261_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-535" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-536", + "@type": "sc:Canvas", + "label": "f. 261 v", + "height": "6018", + "width": "4003", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-536", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_261_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "4003", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_261_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-536" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-537", + "@type": "sc:Canvas", + "label": "f. 262 r", + "height": "5998", + "width": "3910", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-537", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_262_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5998", + "width": "3910", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_262_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-537" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-538", + "@type": "sc:Canvas", + "label": "f. 262 v", + "height": "6042", + "width": "4015", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-538", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_262_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "4015", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_262_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-538" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-539", + "@type": "sc:Canvas", + "label": "f. 263 r", + "height": "6022", + "width": "3958", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-539", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_263_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3958", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_263_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-539" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-540", + "@type": "sc:Canvas", + "label": "f. 263 v", + "height": "6042", + "width": "4015", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-540", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_263_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "4015", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_263_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-540" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-541", + "@type": "sc:Canvas", + "label": "f. 264 r", + "height": "6022", + "width": "3862", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-541", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_264_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3862", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_264_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-541" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-542", + "@type": "sc:Canvas", + "label": "f. 264 v", + "height": "6018", + "width": "3967", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-542", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_264_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3967", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_264_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-542" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-543", + "@type": "sc:Canvas", + "label": "f. 265 r", + "height": "6022", + "width": "3894", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-543", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_265_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3894", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_265_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-543" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-544", + "@type": "sc:Canvas", + "label": "f. 265 v", + "height": "6066", + "width": "4027", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-544", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_265_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "4027", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_265_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-544" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-545", + "@type": "sc:Canvas", + "label": "f. 266 r", + "height": "6046", + "width": "3958", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-545", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_266_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6046", + "width": "3958", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_266_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-545" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-546", + "@type": "sc:Canvas", + "label": "f. 266 v", + "height": "6018", + "width": "4003", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-546", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_266_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "4003", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_266_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-546" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-547", + "@type": "sc:Canvas", + "label": "f. 267 r", + "height": "6014", + "width": "3950", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-547", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_267_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6014", + "width": "3950", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_267_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-547" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-548", + "@type": "sc:Canvas", + "label": "f. 267 v", + "height": "6066", + "width": "4003", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-548", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_267_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "4003", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_267_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-548" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-549", + "@type": "sc:Canvas", + "label": "f. 268 r", + "height": "6022", + "width": "3910", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-549", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_268_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3910", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_268_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-549" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-550", + "@type": "sc:Canvas", + "label": "f. 268 v", + "height": "6054", + "width": "4003", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-550", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_268_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "4003", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_268_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-550" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-551", + "@type": "sc:Canvas", + "label": "f. 269 r", + "height": "6046", + "width": "3934", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-551", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_269_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6046", + "width": "3934", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_269_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-551" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-552", + "@type": "sc:Canvas", + "label": "f. 269 v", + "height": "6042", + "width": "3967", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-552", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_269_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3967", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_269_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-552" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-553", + "@type": "sc:Canvas", + "label": "f. 270 r", + "height": "6030", + "width": "3862", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-553", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_270_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3862", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_270_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-553" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-554", + "@type": "sc:Canvas", + "label": "f. 270 v", + "height": "6018", + "width": "3943", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-554", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_270_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3943", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_270_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-554" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-555", + "@type": "sc:Canvas", + "label": "f. 271 r", + "height": "6006", + "width": "3878", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-555", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_271_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3878", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_271_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-555" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-556", + "@type": "sc:Canvas", + "label": "f. 271 v", + "height": "6078", + "width": "3955", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-556", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_271_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6078", + "width": "3955", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_271_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-556" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-557", + "@type": "sc:Canvas", + "label": "f. 272 r", + "height": "6054", + "width": "3902", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-557", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_272_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3902", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_272_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-557" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-558", + "@type": "sc:Canvas", + "label": "f. 272 v", + "height": "6054", + "width": "3919", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-558", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_272_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3919", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_272_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-558" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-559", + "@type": "sc:Canvas", + "label": "f. 273 r", + "height": "6046", + "width": "3910", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-559", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_273_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6046", + "width": "3910", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_273_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-559" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-560", + "@type": "sc:Canvas", + "label": "f. 273 v", + "height": "6066", + "width": "3991", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-560", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_273_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3991", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_273_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-560" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-561", + "@type": "sc:Canvas", + "label": "f. 274 r", + "height": "6030", + "width": "3830", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-561", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_274_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3830", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_274_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-561" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-562", + "@type": "sc:Canvas", + "label": "f. 274 v", + "height": "6018", + "width": "3919", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-562", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_274_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3919", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_274_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-562" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-563", + "@type": "sc:Canvas", + "label": "f. 275 r", + "height": "6042", + "width": "3883", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-563", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_275_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3883", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_275_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-563" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-564", + "@type": "sc:Canvas", + "label": "f. 275 v", + "height": "6030", + "width": "3991", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-564", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_275_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3991", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_275_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-564" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-565", + "@type": "sc:Canvas", + "label": "f. 276 r", + "height": "6054", + "width": "3862", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-565", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_276_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3862", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_276_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-565" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-566", + "@type": "sc:Canvas", + "label": "f. 276 v", + "height": "6018", + "width": "4003", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-566", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_276_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "4003", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_276_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-566" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-567", + "@type": "sc:Canvas", + "label": "f. 277 r", + "height": "6006", + "width": "3886", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-567", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_277_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3886", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_277_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-567" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-568", + "@type": "sc:Canvas", + "label": "f. 277 v", + "height": "6006", + "width": "3991", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-568", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_277_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3991", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_277_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-568" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-569", + "@type": "sc:Canvas", + "label": "f. 278 r", + "height": "6054", + "width": "3926", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-569", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_278_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3926", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_278_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-569" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-570", + "@type": "sc:Canvas", + "label": "f. 278 v", + "height": "6078", + "width": "3955", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-570", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_278_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6078", + "width": "3955", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_278_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-570" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-571", + "@type": "sc:Canvas", + "label": "f. 279 r", + "height": "6038", + "width": "3958", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-571", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_279_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6038", + "width": "3958", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_279_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-571" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-572", + "@type": "sc:Canvas", + "label": "f. 279 v", + "height": "6030", + "width": "3979", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-572", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_279_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3979", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_279_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-572" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-573", + "@type": "sc:Canvas", + "label": "f. 280 r", + "height": "6006", + "width": "3814", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-573", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_280_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3814", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_280_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-573" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-574", + "@type": "sc:Canvas", + "label": "f. 280 v", + "height": "6030", + "width": "3895", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-574", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_280_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3895", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_280_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-574" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-575", + "@type": "sc:Canvas", + "label": "f. 281 r", + "height": "6030", + "width": "3878", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-575", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_281_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3878", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_281_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-575" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-576", + "@type": "sc:Canvas", + "label": "f. 281 v", + "height": "6078", + "width": "3955", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-576", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_281_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6078", + "width": "3955", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_281_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-576" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-577", + "@type": "sc:Canvas", + "label": "f. 282 r", + "height": "6046", + "width": "3838", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-577", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_282_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6046", + "width": "3838", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_282_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-577" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-578", + "@type": "sc:Canvas", + "label": "f. 282 v", + "height": "6054", + "width": "3919", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-578", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_282_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3919", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_282_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-578" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-579", + "@type": "sc:Canvas", + "label": "f. 283 r", + "height": "6022", + "width": "3854", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-579", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_283_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3854", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_283_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-579" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-580", + "@type": "sc:Canvas", + "label": "f. 283 v", + "height": "6018", + "width": "3967", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-580", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_283_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3967", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_283_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-580" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-581", + "@type": "sc:Canvas", + "label": "f. 284 r", + "height": "6046", + "width": "3846", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-581", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_284_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6046", + "width": "3846", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_284_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-581" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-582", + "@type": "sc:Canvas", + "label": "f. 284 v", + "height": "6066", + "width": "3979", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-582", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_284_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3979", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_284_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-582" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-583", + "@type": "sc:Canvas", + "label": "f. 285 r", + "height": "6014", + "width": "3894", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-583", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_285_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6014", + "width": "3894", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_285_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-583" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-584", + "@type": "sc:Canvas", + "label": "f. 285 v", + "height": "6042", + "width": "3991", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-584", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_285_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3991", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_285_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-584" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-585", + "@type": "sc:Canvas", + "label": "f. 286 r", + "height": "6030", + "width": "3918", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-585", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_286_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3918", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_286_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-585" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-586", + "@type": "sc:Canvas", + "label": "f. 286 v", + "height": "6042", + "width": "3991", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-586", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_286_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3991", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_286_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-586" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-587", + "@type": "sc:Canvas", + "label": "f. 287 r", + "height": "6030", + "width": "3854", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-587", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_287_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3854", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_287_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-587" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-588", + "@type": "sc:Canvas", + "label": "f. 287 v", + "height": "6066", + "width": "3955", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-588", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_287_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3955", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_287_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-588" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-589", + "@type": "sc:Canvas", + "label": "f. 288 r", + "height": "5998", + "width": "3846", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-589", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_288_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5998", + "width": "3846", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_288_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-589" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-590", + "@type": "sc:Canvas", + "label": "f. 288 v", + "height": "6090", + "width": "3943", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-590", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_288_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6090", + "width": "3943", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_288_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-590" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-591", + "@type": "sc:Canvas", + "label": "f. 289 r", + "height": "6038", + "width": "3877", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-591", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_289_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6038", + "width": "3877", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_289_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-591" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-592", + "@type": "sc:Canvas", + "label": "f. 289 v", + "height": "6042", + "width": "3919", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-592", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_289_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3919", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_289_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-592" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-593", + "@type": "sc:Canvas", + "label": "f. 290 r", + "height": "6022", + "width": "3886", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-593", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_290_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3886", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_290_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-593" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-594", + "@type": "sc:Canvas", + "label": "f. 290 v", + "height": "6090", + "width": "3907", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-594", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_290_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6090", + "width": "3907", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_290_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-594" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-595", + "@type": "sc:Canvas", + "label": "f. 291 r", + "height": "6062", + "width": "3911", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-595", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_291_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6062", + "width": "3911", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_291_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-595" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-596", + "@type": "sc:Canvas", + "label": "f. 291 v", + "height": "6066", + "width": "3991", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-596", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_291_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3991", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_291_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-596" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-597", + "@type": "sc:Canvas", + "label": "f. 292 r", + "height": "6046", + "width": "3918", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-597", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_292_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6046", + "width": "3918", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_292_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-597" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-598", + "@type": "sc:Canvas", + "label": "f. 292 v", + "height": "6054", + "width": "3991", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-598", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_292_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3991", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_292_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-598" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-599", + "@type": "sc:Canvas", + "label": "f. 293 r", + "height": "6038", + "width": "3902", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-599", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_293_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6038", + "width": "3902", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_293_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-599" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-600", + "@type": "sc:Canvas", + "label": "f. 293 v", + "height": "6066", + "width": "3931", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-600", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_293_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3931", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_293_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-600" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-601", + "@type": "sc:Canvas", + "label": "f. 294 r", + "height": "6038", + "width": "3910", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-601", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_294_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6038", + "width": "3910", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_294_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-601" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-602", + "@type": "sc:Canvas", + "label": "f. 294 v", + "height": "6042", + "width": "3907", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-602", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_294_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3907", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_294_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-602" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-603", + "@type": "sc:Canvas", + "label": "f. 295 r", + "height": "6038", + "width": "3894", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-603", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_295_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6038", + "width": "3894", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_295_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-603" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-604", + "@type": "sc:Canvas", + "label": "f. 295 v", + "height": "6066", + "width": "3883", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-604", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_295_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3883", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_295_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-604" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-605", + "@type": "sc:Canvas", + "label": "f. 296 r", + "height": "6006", + "width": "3886", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-605", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_296_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3886", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_296_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-605" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-606", + "@type": "sc:Canvas", + "label": "f. 296 v", + "height": "6018", + "width": "3943", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-606", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_296_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3943", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_296_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-606" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-607", + "@type": "sc:Canvas", + "label": "f. 297 r", + "height": "6014", + "width": "3910", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-607", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_297_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6014", + "width": "3910", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_297_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-607" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-608", + "@type": "sc:Canvas", + "label": "f. 297 v", + "height": "6006", + "width": "3883", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-608", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_297_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3883", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_297_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-608" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-609", + "@type": "sc:Canvas", + "label": "f. 298 r", + "height": "6015", + "width": "3870", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-609", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_298_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6015", + "width": "3870", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_298_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-609" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-610", + "@type": "sc:Canvas", + "label": "f. 298 v", + "height": "6066", + "width": "3883", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-610", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_298_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3883", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_298_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-610" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-611", + "@type": "sc:Canvas", + "label": "f. 299 r", + "height": "6030", + "width": "3838", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-611", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_299_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3838", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_299_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-611" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-612", + "@type": "sc:Canvas", + "label": "f. 299 v", + "height": "6054", + "width": "3919", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-612", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_299_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3919", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_299_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-612" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-613", + "@type": "sc:Canvas", + "label": "f. 300 r", + "height": "6046", + "width": "3902", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-613", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_300_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6046", + "width": "3902", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_300_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-613" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-614", + "@type": "sc:Canvas", + "label": "f. 300 v", + "height": "6006", + "width": "3871", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-614", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_300_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3871", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_300_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-614" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-615", + "@type": "sc:Canvas", + "label": "f. 301 r", + "height": "6030", + "width": "3878", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-615", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_301_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3878", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_301_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-615" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-616", + "@type": "sc:Canvas", + "label": "f. 301 v", + "height": "6150", + "width": "3883", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-616", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_301_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6150", + "width": "3883", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_301_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-616" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-617", + "@type": "sc:Canvas", + "label": "f. 302 r", + "height": "6014", + "width": "3854", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-617", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_302_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6014", + "width": "3854", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_302_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-617" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-618", + "@type": "sc:Canvas", + "label": "f. 302 v", + "height": "6042", + "width": "3979", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-618", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_302_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3979", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_302_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-618" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-619", + "@type": "sc:Canvas", + "label": "f. 303 r", + "height": "6062", + "width": "3910", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-619", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_303_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6062", + "width": "3910", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_303_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-619" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-620", + "@type": "sc:Canvas", + "label": "f. 303 v", + "height": "6066", + "width": "3943", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-620", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_303_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3943", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_303_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-620" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-621", + "@type": "sc:Canvas", + "label": "f. 304 r", + "height": "6030", + "width": "3878", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-621", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_304_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3878", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_304_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-621" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-622", + "@type": "sc:Canvas", + "label": "f. 304 v", + "height": "6090", + "width": "3871", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-622", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_304_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6090", + "width": "3871", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_304_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-622" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-623", + "@type": "sc:Canvas", + "label": "f. 305 r", + "height": "6030", + "width": "3822", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-623", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_305_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3822", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_305_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-623" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-624", + "@type": "sc:Canvas", + "label": "f. 305 v", + "height": "6066", + "width": "3859", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-624", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_305_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3859", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_305_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-624" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-625", + "@type": "sc:Canvas", + "label": "f. 306 r", + "height": "6038", + "width": "3870", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-625", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_306_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6038", + "width": "3870", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_306_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-625" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-626", + "@type": "sc:Canvas", + "label": "f. 306 v", + "height": "6054", + "width": "3895", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-626", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_306_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3895", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_306_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-626" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-627", + "@type": "sc:Canvas", + "label": "f. 307 r", + "height": "6006", + "width": "3878", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-627", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_307_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3878", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_307_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-627" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-628", + "@type": "sc:Canvas", + "label": "f. 307 v", + "height": "6042", + "width": "3919", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-628", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_307_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3919", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_307_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-628" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-629", + "@type": "sc:Canvas", + "label": "f. 308 r", + "height": "6070", + "width": "3838", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-629", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_308_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6070", + "width": "3838", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_308_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-629" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-630", + "@type": "sc:Canvas", + "label": "f. 308 v", + "height": "6018", + "width": "3955", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-630", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_308_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3955", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_308_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-630" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-631", + "@type": "sc:Canvas", + "label": "f. 309 r", + "height": "6047", + "width": "3838", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-631", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_309_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6047", + "width": "3838", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_309_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-631" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-632", + "@type": "sc:Canvas", + "label": "f. 309 v", + "height": "6114", + "width": "3943", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-632", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_309_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6114", + "width": "3943", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_309_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-632" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-633", + "@type": "sc:Canvas", + "label": "f. 310 r", + "height": "6014", + "width": "3854", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-633", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_310_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6014", + "width": "3854", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_310_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-633" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-634", + "@type": "sc:Canvas", + "label": "f. 310 v", + "height": "6042", + "width": "3967", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-634", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_310_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3967", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_310_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-634" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-635", + "@type": "sc:Canvas", + "label": "f. 311 r", + "height": "6046", + "width": "3870", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-635", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_311_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6046", + "width": "3870", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_311_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-635" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-636", + "@type": "sc:Canvas", + "label": "f. 311 v", + "height": "6054", + "width": "3979", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-636", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_311_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3979", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_311_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-636" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-637", + "@type": "sc:Canvas", + "label": "f. 312 r", + "height": "6014", + "width": "3910", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-637", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_312_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6014", + "width": "3910", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_312_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-637" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-638", + "@type": "sc:Canvas", + "label": "f. 312 v", + "height": "6066", + "width": "3931", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-638", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_312_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3931", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_312_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-638" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-639", + "@type": "sc:Canvas", + "label": "f. 313 r", + "height": "6022", + "width": "3878", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-639", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_313_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3878", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_313_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-639" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-640", + "@type": "sc:Canvas", + "label": "f. 313 v", + "height": "6006", + "width": "3979", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-640", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_313_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3979", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_313_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-640" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-641", + "@type": "sc:Canvas", + "label": "f. 314 r", + "height": "6023", + "width": "3910", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-641", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_314_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6023", + "width": "3910", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_314_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-641" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-642", + "@type": "sc:Canvas", + "label": "f. 314 v", + "height": "6066", + "width": "3967", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-642", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_314_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3967", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_314_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-642" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-643", + "@type": "sc:Canvas", + "label": "f. 315 r", + "height": "6014", + "width": "3886", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-643", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_315_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6014", + "width": "3886", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_315_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-643" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-644", + "@type": "sc:Canvas", + "label": "f. 315 v", + "height": "6042", + "width": "3979", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-644", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_315_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3979", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_315_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-644" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-645", + "@type": "sc:Canvas", + "label": "f. 316 r", + "height": "6038", + "width": "3862", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-645", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_316_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6038", + "width": "3862", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_316_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-645" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-646", + "@type": "sc:Canvas", + "label": "f. 316 v", + "height": "6022", + "width": "3950", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-646", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_316_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3950", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_316_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-646" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-647", + "@type": "sc:Canvas", + "label": "f. 317 r", + "height": "5998", + "width": "3862", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-647", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_317_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5998", + "width": "3862", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_317_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-647" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-648", + "@type": "sc:Canvas", + "label": "f. 317 v", + "height": "6042", + "width": "3919", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-648", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_317_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3919", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_317_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-648" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-649", + "@type": "sc:Canvas", + "label": "f. 318 r", + "height": "6046", + "width": "3893", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-649", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_318_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6046", + "width": "3893", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_318_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-649" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-650", + "@type": "sc:Canvas", + "label": "f. 318 v", + "height": "6066", + "width": "3955", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-650", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_318_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3955", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_318_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-650" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-651", + "@type": "sc:Canvas", + "label": "f. 319 r", + "height": "5982", + "width": "3887", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-651", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_319_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5982", + "width": "3887", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_319_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-651" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-652", + "@type": "sc:Canvas", + "label": "f. 319 v", + "height": "6054", + "width": "3883", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-652", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_319_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3883", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_319_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-652" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-653", + "@type": "sc:Canvas", + "label": "f. 320 r", + "height": "6062", + "width": "3830", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-653", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_320_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6062", + "width": "3830", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_320_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-653" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-654", + "@type": "sc:Canvas", + "label": "f. 320 v", + "height": "6078", + "width": "3967", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-654", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_320_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6078", + "width": "3967", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_320_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-654" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-655", + "@type": "sc:Canvas", + "label": "f. 321 r", + "height": "6038", + "width": "3838", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-655", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_321_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6038", + "width": "3838", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_321_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-655" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-656", + "@type": "sc:Canvas", + "label": "f. 321 v", + "height": "6102", + "width": "3847", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-656", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_321_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6102", + "width": "3847", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_321_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-656" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-657", + "@type": "sc:Canvas", + "label": "f. 322 r", + "height": "6062", + "width": "3878", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-657", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_322_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6062", + "width": "3878", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_322_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-657" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-658", + "@type": "sc:Canvas", + "label": "f. 322 v", + "height": "6066", + "width": "3943", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-658", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_322_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3943", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_322_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-658" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-659", + "@type": "sc:Canvas", + "label": "f. 323 r", + "height": "6054", + "width": "3822", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-659", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_323_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3822", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_323_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-659" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-660", + "@type": "sc:Canvas", + "label": "f. 323 v", + "height": "6054", + "width": "3883", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-660", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_323_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3883", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_323_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-660" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-661", + "@type": "sc:Canvas", + "label": "f. 324 r", + "height": "6070", + "width": "3838", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-661", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_324_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6070", + "width": "3838", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_324_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-661" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-662", + "@type": "sc:Canvas", + "label": "f. 324 v", + "height": "6042", + "width": "3979", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-662", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_324_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3979", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_324_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-662" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-663", + "@type": "sc:Canvas", + "label": "f. 325 r", + "height": "6071", + "width": "3830", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-663", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_325_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6071", + "width": "3830", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_325_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-663" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-664", + "@type": "sc:Canvas", + "label": "f. 325 v", + "height": "6078", + "width": "3931", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-664", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_325_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6078", + "width": "3931", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_325_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-664" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-665", + "@type": "sc:Canvas", + "label": "f. 326 r", + "height": "6078", + "width": "3846", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-665", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_326_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6078", + "width": "3846", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_326_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-665" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-666", + "@type": "sc:Canvas", + "label": "f. 326 v", + "height": "6126", + "width": "3943", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-666", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_326_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6126", + "width": "3943", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_326_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-666" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-667", + "@type": "sc:Canvas", + "label": "f. 327 r", + "height": "6054", + "width": "3775", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-667", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_327_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3775", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_327_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-667" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-668", + "@type": "sc:Canvas", + "label": "f. 327 v", + "height": "6062", + "width": "3902", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-668", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_327_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6062", + "width": "3902", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_327_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-668" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-669", + "@type": "sc:Canvas", + "label": "f. 328 r", + "height": "6090", + "width": "3811", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-669", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_328_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6090", + "width": "3811", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_328_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-669" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-670", + "@type": "sc:Canvas", + "label": "f. 328 v", + "height": "6038", + "width": "3926", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-670", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_328_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6038", + "width": "3926", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_328_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-670" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-671", + "@type": "sc:Canvas", + "label": "f. 329 r", + "height": "6078", + "width": "3811", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-671", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_329_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6078", + "width": "3811", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_329_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-671" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-672", + "@type": "sc:Canvas", + "label": "f. 329 v", + "height": "6078", + "width": "3910", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-672", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_329_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6078", + "width": "3910", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_329_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-672" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-673", + "@type": "sc:Canvas", + "label": "f. 330 r", + "height": "6090", + "width": "3787", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-673", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_330_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6090", + "width": "3787", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_330_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-673" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-674", + "@type": "sc:Canvas", + "label": "f. 330 v", + "height": "6022", + "width": "3926", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-674", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_330_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3926", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_330_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-674" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-675", + "@type": "sc:Canvas", + "label": "f. 331 r", + "height": "6102", + "width": "3847", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-675", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_331_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6102", + "width": "3847", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_331_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-675" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-676", + "@type": "sc:Canvas", + "label": "f. 331 v", + "height": "6070", + "width": "3958", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-676", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_331_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6070", + "width": "3958", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_331_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-676" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-677", + "@type": "sc:Canvas", + "label": "f. 332 r", + "height": "6114", + "width": "3895", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-677", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_332_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6114", + "width": "3895", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_332_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-677" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-678", + "@type": "sc:Canvas", + "label": "f. 332 v", + "height": "6070", + "width": "3950", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-678", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_332_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6070", + "width": "3950", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_332_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-678" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-679", + "@type": "sc:Canvas", + "label": "f. 333 r", + "height": "6102", + "width": "3847", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-679", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_333_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6102", + "width": "3847", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_333_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-679" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-680", + "@type": "sc:Canvas", + "label": "f. 333 v", + "height": "6070", + "width": "3878", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-680", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_333_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6070", + "width": "3878", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_333_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-680" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-681", + "@type": "sc:Canvas", + "label": "f. 334 r", + "height": "6126", + "width": "3835", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-681", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_334_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6126", + "width": "3835", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_334_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-681" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-682", + "@type": "sc:Canvas", + "label": "f. 334 v", + "height": "6054", + "width": "3886", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-682", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_334_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3886", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_334_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-682" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-683", + "@type": "sc:Canvas", + "label": "f. 335 r", + "height": "6114", + "width": "3811", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-683", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_335_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6114", + "width": "3811", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_335_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-683" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-684", + "@type": "sc:Canvas", + "label": "f. 335 v", + "height": "6086", + "width": "3870", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-684", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_335_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6086", + "width": "3870", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_335_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-684" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-685", + "@type": "sc:Canvas", + "label": "f. 336 r", + "height": "6090", + "width": "3799", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-685", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_336_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6090", + "width": "3799", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_336_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-685" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-686", + "@type": "sc:Canvas", + "label": "f. 336 v", + "height": "6006", + "width": "3878", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-686", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_336_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3878", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_336_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-686" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-687", + "@type": "sc:Canvas", + "label": "f. 337 r", + "height": "6066", + "width": "3775", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-687", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_337_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3775", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_337_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-687" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-688", + "@type": "sc:Canvas", + "label": "f. 337 v", + "height": "6046", + "width": "3918", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-688", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_337_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6046", + "width": "3918", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_337_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-688" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-689", + "@type": "sc:Canvas", + "label": "f. 338 r", + "height": "6090", + "width": "3787", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-689", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_338_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6090", + "width": "3787", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_338_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-689" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-690", + "@type": "sc:Canvas", + "label": "f. 338 v", + "height": "6022", + "width": "3926", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-690", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_338_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3926", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_338_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-690" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-691", + "@type": "sc:Canvas", + "label": "f. 339 r", + "height": "6078", + "width": "3787", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-691", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_339_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6078", + "width": "3787", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_339_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-691" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-692", + "@type": "sc:Canvas", + "label": "f. 339 v", + "height": "6046", + "width": "3910", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-692", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_339_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6046", + "width": "3910", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_339_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-692" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-693", + "@type": "sc:Canvas", + "label": "f. 340 r", + "height": "6054", + "width": "3751", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-693", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_340_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3751", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_340_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-693" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-694", + "@type": "sc:Canvas", + "label": "f. 340 v", + "height": "6030", + "width": "3950", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-694", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_340_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3950", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_340_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-694" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-695", + "@type": "sc:Canvas", + "label": "f. 341 r", + "height": "6102", + "width": "3823", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-695", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_341_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6102", + "width": "3823", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_341_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-695" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-696", + "@type": "sc:Canvas", + "label": "f. 341 v", + "height": "6038", + "width": "3934", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-696", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_341_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6038", + "width": "3934", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_341_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-696" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-697", + "@type": "sc:Canvas", + "label": "f. 342 r", + "height": "6102", + "width": "3703", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-697", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_342_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6102", + "width": "3703", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_342_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-697" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-698", + "@type": "sc:Canvas", + "label": "f. 342 v", + "height": "6038", + "width": "3814", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-698", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_342_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6038", + "width": "3814", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_342_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-698" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-699", + "@type": "sc:Canvas", + "label": "f. 343 r", + "height": "6090", + "width": "3787", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-699", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_343_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6090", + "width": "3787", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_343_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-699" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-700", + "@type": "sc:Canvas", + "label": "f. 343 v", + "height": "6046", + "width": "3894", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-700", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_343_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6046", + "width": "3894", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_343_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-700" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-701", + "@type": "sc:Canvas", + "label": "f. 344 r", + "height": "6066", + "width": "3739", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-701", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_344_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3739", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_344_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-701" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-702", + "@type": "sc:Canvas", + "label": "f. 344 v", + "height": "5990", + "width": "3894", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-702", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_344_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5990", + "width": "3894", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_344_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-702" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-703", + "@type": "sc:Canvas", + "label": "f. 345 r", + "height": "6042", + "width": "3811", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-703", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_345_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3811", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_345_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-703" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-704", + "@type": "sc:Canvas", + "label": "f. 345 v", + "height": "6038", + "width": "3934", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-704", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_345_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6038", + "width": "3934", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_345_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-704" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-705", + "@type": "sc:Canvas", + "label": "f. 346 r", + "height": "6078", + "width": "3787", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-705", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_346_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6078", + "width": "3787", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_346_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-705" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-706", + "@type": "sc:Canvas", + "label": "f. 346 v", + "height": "6006", + "width": "3894", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-706", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_346_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3894", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_346_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-706" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-707", + "@type": "sc:Canvas", + "label": "f. 347 r", + "height": "6030", + "width": "3799", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-707", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_347_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3799", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_347_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-707" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-708", + "@type": "sc:Canvas", + "label": "f. 347 v", + "height": "6030", + "width": "3910", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-708", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_347_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3910", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_347_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-708" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-709", + "@type": "sc:Canvas", + "label": "f. 348 r", + "height": "6066", + "width": "3715", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-709", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_348_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3715", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_348_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-709" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-710", + "@type": "sc:Canvas", + "label": "f. 348 v", + "height": "6014", + "width": "3910", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-710", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_348_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6014", + "width": "3910", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_348_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-710" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-711", + "@type": "sc:Canvas", + "label": "f. 349 r", + "height": "6042", + "width": "3811", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-711", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_349_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3811", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_349_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-711" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-712", + "@type": "sc:Canvas", + "label": "f. 349 v", + "height": "6046", + "width": "3926", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-712", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_349_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6046", + "width": "3926", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_349_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-712" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-713", + "@type": "sc:Canvas", + "label": "f. 350 r", + "height": "6078", + "width": "3740", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-713", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_350_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6078", + "width": "3740", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_350_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-713" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-714", + "@type": "sc:Canvas", + "label": "f. 350 v", + "height": "6038", + "width": "3918", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-714", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_350_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6038", + "width": "3918", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_350_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-714" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-715", + "@type": "sc:Canvas", + "label": "f. 351 r", + "height": "6006", + "width": "3836", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-715", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_351_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6006", + "width": "3836", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_351_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-715" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-716", + "@type": "sc:Canvas", + "label": "f. 351 v", + "height": "5998", + "width": "3886", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-716", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_351_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5998", + "width": "3886", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_351_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-716" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-717", + "@type": "sc:Canvas", + "label": "f. 352 r", + "height": "6042", + "width": "3751", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-717", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_352_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3751", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_352_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-717" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-718", + "@type": "sc:Canvas", + "label": "f. 352 v", + "height": "6030", + "width": "3902", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-718", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_352_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3902", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_352_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-718" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-719", + "@type": "sc:Canvas", + "label": "f. 353 r", + "height": "6066", + "width": "3787", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-719", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_353_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3787", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_353_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-719" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-720", + "@type": "sc:Canvas", + "label": "f. 353 v", + "height": "6062", + "width": "3942", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-720", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_353_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6062", + "width": "3942", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_353_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-720" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-721", + "@type": "sc:Canvas", + "label": "f. 354 r", + "height": "6126", + "width": "3788", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-721", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_354_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6126", + "width": "3788", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_354_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-721" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-722", + "@type": "sc:Canvas", + "label": "f. 354 v", + "height": "6042", + "width": "3883", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-722", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_354_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3883", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_354_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-722" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-723", + "@type": "sc:Canvas", + "label": "f. 355 r", + "height": "6030", + "width": "3788", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-723", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_355_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3788", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_355_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-723" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-724", + "@type": "sc:Canvas", + "label": "f. 355 v", + "height": "6042", + "width": "3895", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-724", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_355_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3895", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_355_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-724" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-725", + "@type": "sc:Canvas", + "label": "f. 356 r", + "height": "6046", + "width": "3782", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-725", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_356_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6046", + "width": "3782", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_356_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-725" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-726", + "@type": "sc:Canvas", + "label": "f. 356 v", + "height": "6046", + "width": "3895", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-726", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_356_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6046", + "width": "3895", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_356_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-726" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-727", + "@type": "sc:Canvas", + "label": "f. 357 r", + "height": "6078", + "width": "3798", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-727", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_357_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6078", + "width": "3798", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_357_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-727" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-728", + "@type": "sc:Canvas", + "label": "f. 357 v", + "height": "6050", + "width": "3915", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-728", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_357_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6050", + "width": "3915", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_357_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-728" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-729", + "@type": "sc:Canvas", + "label": "f. 358 r", + "height": "6085", + "width": "3807", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-729", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_358_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6085", + "width": "3807", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_358_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-729" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-730", + "@type": "sc:Canvas", + "label": "f. 358 v", + "height": "6030", + "width": "3919", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-730", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_358_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3919", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_358_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-730" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-731", + "@type": "sc:Canvas", + "label": "f. 359 r", + "height": "3301", + "width": "3741", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-731", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_359_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "3301", + "width": "3741", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_359_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-731" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-732", + "@type": "sc:Canvas", + "label": "f. 359 v", + "height": "3343", + "width": "3831", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-732", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_359_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "3343", + "width": "3831", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_359_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-732" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-733", + "@type": "sc:Canvas", + "label": "f. 360 r", + "height": "6102", + "width": "3774", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-733", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_360_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6102", + "width": "3774", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_360_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-733" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-734", + "@type": "sc:Canvas", + "label": "f. 360 v", + "height": "6091", + "width": "3871", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-734", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_360_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6091", + "width": "3871", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_360_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-734" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-735", + "@type": "sc:Canvas", + "label": "f. 361 r", + "height": "6062", + "width": "3782", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-735", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_361_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6062", + "width": "3782", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_361_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-735" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-736", + "@type": "sc:Canvas", + "label": "f. 361 v", + "height": "6018", + "width": "3859", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-736", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_361_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6018", + "width": "3859", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_361_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-736" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-737", + "@type": "sc:Canvas", + "label": "f. 362 r", + "height": "6078", + "width": "3814", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-737", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_362_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6078", + "width": "3814", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_362_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-737" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-738", + "@type": "sc:Canvas", + "label": "f. 362 v", + "height": "6054", + "width": "3775", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-738", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_362_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3775", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_362_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-738" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-739", + "@type": "sc:Canvas", + "label": "f. 363 r", + "height": "6046", + "width": "3782", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-739", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_363_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6046", + "width": "3782", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_363_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-739" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-740", + "@type": "sc:Canvas", + "label": "f. 363 v", + "height": "6066", + "width": "3847", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-740", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_363_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3847", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_363_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-740" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-741", + "@type": "sc:Canvas", + "label": "f. 364 r", + "height": "6070", + "width": "3838", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-741", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_364_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6070", + "width": "3838", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_364_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-741" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-742", + "@type": "sc:Canvas", + "label": "f. 364 v", + "height": "6066", + "width": "3871", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-742", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_364_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3871", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_364_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-742" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-743", + "@type": "sc:Canvas", + "label": "f. 365 r", + "height": "6070", + "width": "3790", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-743", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_365_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6070", + "width": "3790", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_365_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-743" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-744", + "@type": "sc:Canvas", + "label": "f. 365 v", + "height": "6066", + "width": "3847", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-744", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_365_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3847", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_365_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-744" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-745", + "@type": "sc:Canvas", + "label": "f. 366 r", + "height": "6046", + "width": "3815", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-745", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_366_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6046", + "width": "3815", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_366_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-745" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-746", + "@type": "sc:Canvas", + "label": "f. 366 v", + "height": "6078", + "width": "3847", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-746", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_366_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6078", + "width": "3847", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_366_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-746" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-747", + "@type": "sc:Canvas", + "label": "f. 367 r", + "height": "6046", + "width": "3806", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-747", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_367_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6046", + "width": "3806", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_367_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-747" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-748", + "@type": "sc:Canvas", + "label": "f. 367 v", + "height": "6066", + "width": "3799", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-748", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_367_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3799", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_367_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-748" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-749", + "@type": "sc:Canvas", + "label": "f. 368 r", + "height": "6020", + "width": "3726", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-749", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_368_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6020", + "width": "3726", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_368_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-749" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-750", + "@type": "sc:Canvas", + "label": "f. 368 v", + "height": "6030", + "width": "3835", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-750", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_368_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3835", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_368_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-750" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-751", + "@type": "sc:Canvas", + "label": "f. 369 r", + "height": "6079", + "width": "3838", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-751", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_369_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6079", + "width": "3838", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_369_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-751" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-752", + "@type": "sc:Canvas", + "label": "f. 369 v", + "height": "6102", + "width": "3883", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-752", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_369_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6102", + "width": "3883", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_369_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-752" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-753", + "@type": "sc:Canvas", + "label": "f. 370 r", + "height": "6030", + "width": "3787", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-753", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_370_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6030", + "width": "3787", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_370_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-753" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-754", + "@type": "sc:Canvas", + "label": "f. 370 v", + "height": "6090", + "width": "3859", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-754", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_370_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6090", + "width": "3859", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_370_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-754" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-755", + "@type": "sc:Canvas", + "label": "f. 371 r", + "height": "6062", + "width": "3814", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-755", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_371_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6062", + "width": "3814", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_371_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-755" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-756", + "@type": "sc:Canvas", + "label": "f. 371 v", + "height": "6078", + "width": "3871", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-756", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_371_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6078", + "width": "3871", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_371_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-756" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-757", + "@type": "sc:Canvas", + "label": "f. 372 r", + "height": "6046", + "width": "3846", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-757", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_372_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6046", + "width": "3846", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_372_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-757" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-758", + "@type": "sc:Canvas", + "label": "f. 372 v", + "height": "6054", + "width": "3913", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-758", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_372_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3913", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_372_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-758" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-759", + "@type": "sc:Canvas", + "label": "f. 373 r", + "height": "6078", + "width": "3823", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-759", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_373_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6078", + "width": "3823", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_373_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-759" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-760", + "@type": "sc:Canvas", + "label": "f. 373 v", + "height": "6066", + "width": "3907", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-760", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_373_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3907", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_373_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-760" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-761", + "@type": "sc:Canvas", + "label": "f. 374 r", + "height": "6054", + "width": "3830", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-761", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_374_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3830", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_374_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-761" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-762", + "@type": "sc:Canvas", + "label": "f. 374 v", + "height": "6042", + "width": "3871", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-762", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_374_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3871", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_374_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-762" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-763", + "@type": "sc:Canvas", + "label": "f. 375 r", + "height": "6102", + "width": "3750", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-763", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_375_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6102", + "width": "3750", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_375_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-763" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-764", + "@type": "sc:Canvas", + "label": "f. 375 v", + "height": "6114", + "width": "3835", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-764", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_375_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6114", + "width": "3835", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_375_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-764" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-765", + "@type": "sc:Canvas", + "label": "f. 376 r", + "height": "6110", + "width": "3822", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-765", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_376_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6110", + "width": "3822", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_376_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-765" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-766", + "@type": "sc:Canvas", + "label": "f. 376 v", + "height": "6090", + "width": "3871", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-766", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_376_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6090", + "width": "3871", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_376_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-766" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-767", + "@type": "sc:Canvas", + "label": "f. 377 r", + "height": "6022", + "width": "3806", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-767", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_377_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3806", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_377_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-767" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-768", + "@type": "sc:Canvas", + "label": "f. 377 v", + "height": "6042", + "width": "3787", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-768", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_377_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3787", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_377_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-768" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-769", + "@type": "sc:Canvas", + "label": "f. 378 r", + "height": "6062", + "width": "3774", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-769", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_378_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6062", + "width": "3774", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_378_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-769" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-770", + "@type": "sc:Canvas", + "label": "f. 378 v", + "height": "6102", + "width": "3847", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-770", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_378_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6102", + "width": "3847", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_378_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-770" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-771", + "@type": "sc:Canvas", + "label": "f. 379 r", + "height": "6102", + "width": "3878", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-771", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_379_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6102", + "width": "3878", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_379_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-771" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-772", + "@type": "sc:Canvas", + "label": "f. 379 v", + "height": "6054", + "width": "3848", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-772", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_379_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3848", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_379_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-772" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-773", + "@type": "sc:Canvas", + "label": "f. 380 r", + "height": "6054", + "width": "3902", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-773", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_380_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3902", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_380_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-773" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-774", + "@type": "sc:Canvas", + "label": "f. 380 v", + "height": "6066", + "width": "3836", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-774", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_380_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3836", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_380_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-774" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-775", + "@type": "sc:Canvas", + "label": "f. 381 r", + "height": "6038", + "width": "3814", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-775", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_381_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6038", + "width": "3814", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_381_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-775" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-776", + "@type": "sc:Canvas", + "label": "f. 381 v", + "height": "6090", + "width": "3895", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-776", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_381_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6090", + "width": "3895", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_381_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-776" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-777", + "@type": "sc:Canvas", + "label": "f. 382 r", + "height": "6070", + "width": "3774", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-777", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_382_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6070", + "width": "3774", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_382_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-777" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-778", + "@type": "sc:Canvas", + "label": "f. 382 v", + "height": "6090", + "width": "3872", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-778", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_382_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6090", + "width": "3872", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_382_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-778" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-779", + "@type": "sc:Canvas", + "label": "f. 383 r", + "height": "6037", + "width": "3862", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-779", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_383_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6037", + "width": "3862", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_383_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-779" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-780", + "@type": "sc:Canvas", + "label": "f. 383 v", + "height": "6078", + "width": "3908", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-780", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_383_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6078", + "width": "3908", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_383_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-780" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-781", + "@type": "sc:Canvas", + "label": "f. 384 r", + "height": "6038", + "width": "3894", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-781", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_384_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6038", + "width": "3894", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_384_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-781" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-782", + "@type": "sc:Canvas", + "label": "f. 384 v", + "height": "6042", + "width": "3836", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-782", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_384_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6042", + "width": "3836", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_384_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-782" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-783", + "@type": "sc:Canvas", + "label": "f. 385 r", + "height": "6022", + "width": "3878", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-783", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_385_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3878", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_385_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-783" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-784", + "@type": "sc:Canvas", + "label": "f. 385 v", + "height": "6090", + "width": "3848", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-784", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_385_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6090", + "width": "3848", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_385_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-784" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-785", + "@type": "sc:Canvas", + "label": "f. 386 r", + "height": "6070", + "width": "3854", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-785", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_386_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6070", + "width": "3854", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_386_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-785" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-786", + "@type": "sc:Canvas", + "label": "f. 386 v", + "height": "6079", + "width": "3859", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-786", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_386_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6079", + "width": "3859", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_386_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-786" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-787", + "@type": "sc:Canvas", + "label": "f. 387 r", + "height": "6046", + "width": "3846", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-787", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_387_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6046", + "width": "3846", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_387_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-787" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-788", + "@type": "sc:Canvas", + "label": "f. 387 v", + "height": "6054", + "width": "3871", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-788", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_387_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3871", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_387_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-788" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-789", + "@type": "sc:Canvas", + "label": "f. 388 r", + "height": "6094", + "width": "3958", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-789", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_388_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6094", + "width": "3958", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_388_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-789" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-790", + "@type": "sc:Canvas", + "label": "f. 388 v", + "height": "6066", + "width": "3895", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-790", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_388_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3895", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_388_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-790" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-791", + "@type": "sc:Canvas", + "label": "f. 389 r", + "height": "6062", + "width": "3894", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-791", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_389_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6062", + "width": "3894", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_389_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-791" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-792", + "@type": "sc:Canvas", + "label": "f. 389 v", + "height": "6066", + "width": "3871", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-792", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_389_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3871", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_389_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-792" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-793", + "@type": "sc:Canvas", + "label": "f. 390 r", + "height": "6078", + "width": "3926", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-793", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_390_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6078", + "width": "3926", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_390_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-793" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-794", + "@type": "sc:Canvas", + "label": "f. 390 v", + "height": "6054", + "width": "3871", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-794", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_390_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3871", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_390_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-794" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-795", + "@type": "sc:Canvas", + "label": "f. 391 r", + "height": "6070", + "width": "3854", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-795", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_391_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6070", + "width": "3854", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_391_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-795" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-796", + "@type": "sc:Canvas", + "label": "f. 391 v", + "height": "6102", + "width": "3895", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-796", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_391_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6102", + "width": "3895", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_391_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-796" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-797", + "@type": "sc:Canvas", + "label": "f. 392 r", + "height": "6078", + "width": "3918", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-797", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_392_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6078", + "width": "3918", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_392_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-797" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-798", + "@type": "sc:Canvas", + "label": "f. 392 v", + "height": "6066", + "width": "3883", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-798", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_392_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3883", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_392_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-798" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-799", + "@type": "sc:Canvas", + "label": "f. 393 r", + "height": "6078", + "width": "3910", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-799", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_393_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6078", + "width": "3910", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_393_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-799" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-800", + "@type": "sc:Canvas", + "label": "f. 393 v", + "height": "6066", + "width": "3907", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-800", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_393_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6066", + "width": "3907", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_393_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-800" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-801", + "@type": "sc:Canvas", + "label": "f. 394 r", + "height": "6022", + "width": "3822", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-801", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_394_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6022", + "width": "3822", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_394_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-801" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-802", + "@type": "sc:Canvas", + "label": "f. 394 v", + "height": "6054", + "width": "3847", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-802", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_394_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3847", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_394_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-802" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-803", + "@type": "sc:Canvas", + "label": "f. d r", + "height": "6062", + "width": "3894", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-803", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_d_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6062", + "width": "3894", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_d_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-803" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-804", + "@type": "sc:Canvas", + "label": "f. d v", + "height": "6054", + "width": "3955", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-804", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_d_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6054", + "width": "3955", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_d_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-804" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-805", + "@type": "sc:Canvas", + "label": "f. e r", + "height": "6126", + "width": "3998", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-805", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_e_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6126", + "width": "3998", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_e_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-805" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-806", + "@type": "sc:Canvas", + "label": "f. e v", + "height": "6162", + "width": "3979", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-806", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_e_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6162", + "width": "3979", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_e_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-806" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-807", + "@type": "sc:Canvas", + "label": "f. f r", + "height": "6162", + "width": "4003", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-807", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_f_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6162", + "width": "4003", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_f_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-807" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-808", + "@type": "sc:Canvas", + "label": "f. f v", + "height": "6166", + "width": "3854", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-808", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_f_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6166", + "width": "3854", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_f_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-808" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-809", + "@type": "sc:Canvas", + "label": "f. g r", + "height": "6114", + "width": "3943", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-809", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_g_R_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6114", + "width": "3943", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_g_R_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-809" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-810", + "@type": "sc:Canvas", + "label": "f. g v", + "height": "6118", + "width": "4046", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-810", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_g_V_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6118", + "width": "4046", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_g_V_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-810" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-811", + "@type": "sc:Canvas", + "label": "Back inside cover", + "height": "6374", + "width": "4350", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-811", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_bib_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6374", + "width": "4350", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_bib_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-811" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-812", + "@type": "sc:Canvas", + "label": "Back outside cover", + "height": "6466", + "width": "4714", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Parker/fh878gz0315/imageanno/anno-812", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_bob_TC_46", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "6466", + "width": "4714", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/fh878gz0315%252F198_bob_TC_46", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Parker/fh878gz0315/canvas/canvas-812" + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/spec/fixtures/iiif_manifest_records/manifest_004.json b/spec/fixtures/iiif_manifest_records/manifest_004.json new file mode 100644 index 0000000..6ef47d5 --- /dev/null +++ b/spec/fixtures/iiif_manifest_records/manifest_004.json @@ -0,0 +1 @@ +{"@context":"http://iiif.io/api/presentation/2/context.json","@id":"https://purl.stanford.edu/bb389yg4719/iiif/manifest.json","@type":"sc:Manifest","label":"Stanford University Libraries, M1814. Flat Box 2, Folder 02","attribution":"","logo":{"@id":"https://stacks.stanford.edu/image/iiif/wy534zh7137%2FSULAIR_rosette/full/400,/0/default.jpg","service":{"@context":"http://iiif.io/api/image/2/context.json","@id":"https://stacks.stanford.edu/image/iiif/wy534zh7137%2FSULAIR_rosette","profile":"http://iiif.io/api/image/2/level1.json"}},"seeAlso":{"@id":"https://purl.stanford.edu/bb389yg4719.mods","format":"application/mods+xml"},"metadata":[{"label":"Date","value":"February 3, 1550"}],"description":"Part of an artificial collection created by the dealer, Bernard M. Rosenthal. Handwritten dealer notes by Rosenthal are included with the document when they include more information than written on each folder.","thumbnail":{"@id":"https://stacks.stanford.edu/image/iiif/bb389yg4719%2Fbb389yg4719_05_0001/full/!400,400/0/default.jpg","@type":"dcterms:Image","format":"image/jpeg","service":{"@context":"http://iiif.io/api/image/2/context.json","@id":"https://stacks.stanford.edu/image/iiif/bb389yg4719%2Fbb389yg4719_05_0001","profile":"http://iiif.io/api/image/2/level1.json"}},"sequences":[{"@id":"https://purl.stanford.edu/bb389yg4719#sequence-1","@type":"sc:Sequence","label":"Current order","canvases":[{"@id":"https://purl.stanford.edu/bb389yg4719/iiif/canvas-0","@type":"sc:Canvas","label":"1","height":7464,"width":2770,"images":[{"@id":"https://purl.stanford.edu/bb389yg4719/iiif/anno-0","@type":"oa:Annotation","motivation":"sc:painting","on":"https://purl.stanford.edu/bb389yg4719/iiif/canvas-0","resource":{"@id":"https://stacks.stanford.edu/image/iiif/bb389yg4719%2Fbb389yg4719_05_0001/full/full/0/default.jpg","@type":"dcterms:Image","format":"image/jpeg","height":7464,"width":2770,"service":{"@context":"http://iiif.io/api/image/2/context.json","@id":"https://stacks.stanford.edu/image/iiif/bb389yg4719%2Fbb389yg4719_05_0001","profile":"http://iiif.io/api/image/2/level1.json"}}}]},{"@id":"https://purl.stanford.edu/bb389yg4719/iiif/canvas-1","@type":"sc:Canvas","label":"2","height":7464,"width":2770,"images":[{"@id":"https://purl.stanford.edu/bb389yg4719/iiif/anno-1","@type":"oa:Annotation","motivation":"sc:painting","on":"https://purl.stanford.edu/bb389yg4719/iiif/canvas-1","resource":{"@id":"https://stacks.stanford.edu/image/iiif/bb389yg4719%2Fbb389yg4719_05_0002/full/full/0/default.jpg","@type":"dcterms:Image","format":"image/jpeg","height":7464,"width":2770,"service":{"@context":"http://iiif.io/api/image/2/context.json","@id":"https://stacks.stanford.edu/image/iiif/bb389yg4719%2Fbb389yg4719_05_0002","profile":"http://iiif.io/api/image/2/level1.json"}}}]}]}]} \ No newline at end of file diff --git a/spec/fixtures/iiif_manifest_records/mods_001.xml b/spec/fixtures/iiif_manifest_records/mods_001.xml new file mode 100644 index 0000000..515ea1a --- /dev/null +++ b/spec/fixtures/iiif_manifest_records/mods_001.xml @@ -0,0 +1,75 @@ + + + + Manuscript fragment of the Gospels and Canonical Epistles, glossed + + + Bible + N.T. Gospels + + + + + cau + + + [Paris? + + ca. 1135] + 1135 + monographic + + + lat + + + 18 leaves, detached. + + From a manuscript which comprised the third and fourth Gospels and The Canonical Epistles, glossed, in 105 leaves. The Gloss on St. John was composed in the eleventh century by Anselm of Laon (d. 1117) and the Gloss on the Canonical Epistles probably dates from about 1100 and may be the work of Anselm or his brother Ralph (d. 1133). + Purchased, 1985. + + + of Laon + Anselm + d.1117 + + + + + of Laon + Ralph + d.1133 + + + + Bible + History + Sources + + + Manuscripts, Latin + + + France + Church history + Middle Ages, 987-1515 + + + Department of Special Collections, Stanford University Libraries, Stanford, CA 94305 + + + appm + CSt + 860403 + 19990219151953.0 + a4083458 + + + + Stanford University Libraries Special Collections, Manuscripts Division + + http://purl.stanford.edu/sk373nx0013 + + + Property rights reside with the repository. Literary rights reside with the creators of the documents or their heirs. To obtain permission to publish or reproduce, please contact the Special Collections Public Services Librarian at speccollref@stanford.edu. + diff --git a/spec/fixtures/iiif_manifest_records/mods_004.xml b/spec/fixtures/iiif_manifest_records/mods_004.xml new file mode 100644 index 0000000..b727f7f --- /dev/null +++ b/spec/fixtures/iiif_manifest_records/mods_004.xml @@ -0,0 +1,42 @@ + + + + Stanford University Libraries, M1814 + Flat Box 2, Folder 02 + + Part of an artificial collection created by the dealer, Bernard M. Rosenthal. Handwritten dealer notes by Rosenthal are included with the document when they include more information than written on each folder. + + reformatted digital + access + image/jpeg + + + February 3, 1550 + monographic + + Purchased, 2011. + + Stanford University. Libraries. Department of Special Collections and University Archives + M1814 Flat Box 2, Folder 02 + + M1814 + 2 + 2 + - + mixed material + + + eng + + Description based on EAD of finding aid. Custom transform of EAD to MODS used. + + sulair:M1814_2_2 + + + Diplomatic manuscript documents, 1404-1781 + + http://purl.stanford.edu/nd057tw6238 + + + Property rights reside with the repository. Literary rights reside with the creators of the documents or their heirs. To obtain permission to publish or reproduce, please contact the Special Collections Public Services Librarian at speccollref@stanford.edu. + diff --git a/spec/models/concerns/annotation_data_spec.rb b/spec/models/concerns/annotation_data_spec.rb index db9362c..88215f6 100644 --- a/spec/models/concerns/annotation_data_spec.rb +++ b/spec/models/concerns/annotation_data_spec.rb @@ -6,13 +6,17 @@ class AnnotationDataTestClass describe AnnotationData do include AnnotationFixtures - let(:document) { SolrDocument.new } - let(:annotation_list) { document.read_annotation(annotation_url_001) } - let(:document_with_id) do - SolrDocument.new(druid: 'kq131cs7229', - collection: 'Parker collection', - iiif_manifest: 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/manifest.json', - mods_url: 'https://purl.stanford.edu/kq131cs7229.mods') + before(:all) do + @document = SolrDocument.new + response1 = File.open("#{::Rails.root}/spec/fixtures/annotation_records/annotation_001.json").read + stub_request(:get, annotation_url_001) + .with(headers: { 'Accept' => '*/*', 'User-Agent' => 'Ruby' }) + .to_return(status: 200, body: response1, headers: {}) + @annotation_list = @document.read_annotation(annotation_url_001) + @document_with_id = SolrDocument.new(druid: 'kq131cs7229', + collection: 'Parker collection', + iiif_manifest: 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/manifest.json', + mods_url: 'https://purl.stanford.edu/kq131cs7229.mods') end describe '#read_annotation' do @@ -21,53 +25,53 @@ class AnnotationDataTestClass end it 'should be a Hash' do - expect(annotation_list).to be_a Hash + expect(@annotation_list).to be_a Hash end it 'should have the keys @context, @id, @type and resources' do - expect(annotation_list.keys).to eq(%w(@context @id @type resources)) + expect(@annotation_list.keys).to eq(%w(@context @id @type resources)) end it 'should have an array of resources' do - expect(annotation_list['resources']).to be_a Array + expect(@annotation_list['resources']).to be_a Array end it 'should have 19 annotations' do - expect(annotation_list['resources'].length).to eq 19 + expect(@annotation_list['resources'].length).to eq 19 end it 'should have the first annotation equal annotation_001' do - expect(annotation_list['resources'].first).to eq(annotation_001) + expect(@annotation_list['resources'].first).to eq(annotation_001) end end describe '#motivation_for_annotations' do it 'should be a String' do - expect(document.motivation_for_annotations).to be_a String + expect(@document.motivation_for_annotations).to be_a String expect(SolrDocument.new.motivation_for_annotations).to be_a String end it 'should be equal to oa:commenting' do - expect(document.motivation_for_annotations).to eq 'oa:commenting' + expect(@document.motivation_for_annotations).to eq 'oa:commenting' expect(SolrDocument.new.motivation_for_annotations).to eq 'oa:commenting' end end describe '#motivation_for_transcriptions' do it 'should be a String' do - expect(document.motivation_for_transcriptions).to be_a String + expect(@document.motivation_for_transcriptions).to be_a String expect(SolrDocument.new.motivation_for_transcriptions).to be_a String end it 'should be equal to sc:painting' do - expect(document.motivation_for_transcriptions).to eq 'sc:painting' + expect(@document.motivation_for_transcriptions).to eq 'sc:painting' expect(SolrDocument.new.motivation_for_transcriptions).to eq 'sc:painting' end end describe '#resources' do it 'should be an Array' do - expect(document.resources(annotation_list)).to be_a Array + expect(@document.resources(@annotation_list)).to be_a Array expect(SolrDocument.new.resources).to be_a Array end @@ -76,13 +80,13 @@ class AnnotationDataTestClass end it 'should have 19 resources' do - expect(document.resources(annotation_list).length).to eq 19 + expect(@document.resources(@annotation_list).length).to eq 19 end end describe '#annotations' do it 'should be an Array' do - expect(document.annotations(annotation_list)).to be_a Array + expect(@document.annotations(@annotation_list)).to be_a Array expect(SolrDocument.new.annotations).to be_a Array end @@ -91,13 +95,13 @@ class AnnotationDataTestClass end it 'should have no annotations' do - expect(document.annotations(annotation_list).length).to eq 0 + expect(@document.annotations(@annotation_list).length).to eq 0 end end describe '#transcriptions' do it 'should be an Array' do - expect(document.transcriptions(annotation_list)).to be_a Array + expect(@document.transcriptions(@annotation_list)).to be_a Array expect(SolrDocument.new.transcriptions).to be_a Array end @@ -106,17 +110,17 @@ class AnnotationDataTestClass end it 'should have 19 transcriptions' do - expect(document.transcriptions(annotation_list).length).to eq 19 + expect(@document.transcriptions(@annotation_list).length).to eq 19 end it 'should have the first transcription equal annotation_001' do - expect(document.transcriptions(annotation_list).first).to eq(annotation_001) + expect(@document.transcriptions(@annotation_list).first).to eq(annotation_001) end end describe '#map_annotation' do - let(:anno_doc_1) { document.map_annotation(annotation_001) } - let(:anno_doc_2) { document.map_annotation(annotation_002) } + let(:anno_doc_1) { @document.map_annotation(annotation_001) } + let(:anno_doc_2) { @document.map_annotation(annotation_002) } it 'should be an Hash' do expect(anno_doc_1).to be_a Hash expect(SolrDocument.new.map_annotation).to be_a Hash @@ -144,10 +148,10 @@ class AnnotationDataTestClass end describe '#annotation_to_solr' do - let(:solr_doc_all) { document_with_id.annotation_to_solr(solr_data_all) } - let(:solr_doc_anno) { document_with_id.annotation_to_solr(solr_data_anno) } - let(:solr_doc_no_id) { document.annotation_to_solr(solr_data_no_id) } - let(:solr_doc_no_anno) { document.annotation_to_solr(solr_data_no_anno) } + let(:solr_doc_all) { @document_with_id.annotation_to_solr(solr_data_all) } + let(:solr_doc_anno) { @document_with_id.annotation_to_solr(solr_data_anno) } + let(:solr_doc_no_id) { @document.annotation_to_solr(solr_data_no_id) } + let(:solr_doc_no_anno) { @document.annotation_to_solr(solr_data_no_anno) } it 'should be a empty hash if no annotation url' do expect(SolrDocument.new.annotation_to_solr).to eq({}) diff --git a/spec/models/concerns/iiif_manifest_data_spec.rb b/spec/models/concerns/iiif_manifest_data_spec.rb index 3e55a32..463fc8b 100644 --- a/spec/models/concerns/iiif_manifest_data_spec.rb +++ b/spec/models/concerns/iiif_manifest_data_spec.rb @@ -9,9 +9,17 @@ class IiifManifestDataTestClass before(:all) do @document_empty = IiifManifest.new @document_empty.read_manifest - @document = IiifManifest.new(manifest_url = manifest_url_001) + response1 = File.open("#{::Rails.root}/spec/fixtures/iiif_manifest_records/manifest_001.json").read + stub_request(:get, manifest_url_001) + .with(headers: { 'Accept' => '*/*', 'User-Agent' => 'Ruby' }) + .to_return(status: 200, body: response1, headers: {}) + @document = IiifManifest.new(manifest_url_001) @document.read_manifest - @document2 = IiifManifest.new(manifest_url = manifest_url_004) + response2 = File.open("#{::Rails.root}/spec/fixtures/iiif_manifest_records/manifest_004.json").read + stub_request(:get, manifest_url_004) + .with(headers: { 'Accept' => '*/*', 'User-Agent' => 'Ruby' }) + .to_return(status: 200, body: response2, headers: {}) + @document2 = IiifManifest.new(manifest_url_004) @document2.read_manifest end @@ -105,7 +113,17 @@ class IiifManifestDataTestClass end describe '#fetch_modsxml' do - before(:all) do + before do + response_mods1 = File.open("#{::Rails.root}/spec/fixtures/iiif_manifest_records/mods_001.xml").read + # Note mods_url converted to https by fetch + stub_request(:get, 'https://purl.stanford.edu/kq131cs7229.mods') + .with(headers: { 'Accept' => '*/*', 'User-Agent' => 'Ruby' }) + .to_return(status: 200, body: response_mods1, headers: {}) + response_mods2 = File.open("#{::Rails.root}/spec/fixtures/iiif_manifest_records/mods_004.xml").read + stub_request(:get, 'https://purl.stanford.edu/bb389yg4719.mods') + .with(headers: { 'Accept' => '*/*', 'User-Agent' => 'Ruby' }) + .to_return(status: 200, body: response_mods2, headers: {}) + @document_empty.fetch_modsxml @document.fetch_modsxml @document2.fetch_modsxml end diff --git a/spec/models/concerns/json_reader_spec.rb b/spec/models/concerns/json_reader_spec.rb index e114d9d..5295249 100644 --- a/spec/models/concerns/json_reader_spec.rb +++ b/spec/models/concerns/json_reader_spec.rb @@ -7,18 +7,16 @@ class JsonReaderTestClass describe JsonReader::Reader do include AnnotationFixtures before(:all) do - @example_str = annotation_list_001 + @fixture_dir = Rails.root.join 'spec/fixtures' @example_url = 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f8r.json' @example_bad_url = 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text.json' - @fixture_dir = Rails.root.join 'spec/fixtures' - @fixture_annotation_file = File.join(@fixture_dir, 'annotation_records/annotation-001.json') - @doc_from_str = JsonReader::Reader.new.from_str(@example_str) - @doc_from_url = JsonReader::Reader.new.from_url(@example_url) - @doc_from_bad_url = JsonReader::Reader.new.from_url(@example_bad_url) - @doc_from_file = JsonReader::Reader.new.from_file(@fixture_annotation_file) end context 'from_str' do + before do + @example_str = annotation_list_001 + @doc_from_str = JsonReader::Reader.new.from_str(@example_str) + end it 'from_str should turn a json string into a Hash' do expect(@doc_from_str).to be_a Hash end @@ -31,6 +29,16 @@ class JsonReaderTestClass end context 'from_url' do + before do + stub_request(:get, @example_url) + .with(headers: { 'Accept' => '*/*', 'User-Agent' => 'Ruby' }) + .to_return(status: 200, body: File.open("#{::Rails.root}/spec/fixtures/annotation_records/annotation_001.json").read, headers: {}) + @doc_from_url = JsonReader::Reader.new.from_url(@example_url) + stub_request(:get, @example_bad_url) + .with(headers: { 'Accept' => '*/*', 'User-Agent' => 'Ruby' }) + .to_return(status: [404, 'File not found']) + @doc_from_bad_url = JsonReader::Reader.new.from_url(@example_bad_url) + end it 'should return nil if url is bad' do expect(@doc_from_bad_url).to be_nil end @@ -46,6 +54,10 @@ class JsonReaderTestClass end context 'from_file' do + before do + @fixture_annotation_file = File.join(@fixture_dir, 'annotation_records/annotation_001.json') + @doc_from_file = JsonReader::Reader.new.from_file(@fixture_annotation_file) + end it 'should turn the contents of a file into a Hash' do expect(@doc_from_file).to be_a Hash end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 17291b1..14fc9ae 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -4,11 +4,10 @@ require 'rspec/rails' require 'rspec/autorun' require 'capybara/poltergeist' -# require 'fixtures/marc_records/marc_856_fixtures' -# require 'fixtures/marc_records/marc_metadata_fixtures' require 'fixtures/mods_records/mods_fixtures' require 'fixtures/annotation_records/annotation_fixtures' require 'fixtures/iiif_manifest_records/iiif_manifest_fixtures' +require 'webmock/rspec' Capybara.register_driver :poltergeist do |app| Capybara::Poltergeist::Driver.new(app, { timeout: 60 }) @@ -58,37 +57,3 @@ # --seed 1234 config.order = 'random' end - -# def total_results -# page.find("h2", text: number_pattern).text.gsub(/\D+/, '').to_i -# end -# -# def results_all_on_page ids -# ids.all? do |id| -# result_on_page id -# end -# end -# -# def result_on_page id -# !all_docs_on_page.index(id).nil? -# end -# -# def document_index id -# all_docs_on_page.index(id) -# end -# -# def all_docs_on_page -# page.all(:xpath, "//form[@data-doc-id]").map{|e| e["data-doc-id"]} -# end -# -# def facet_index(options) -# all_facets_by_name(options[:facet_name]).index(options[:value]) -# end -# -# def all_facets_by_name(facet_name) -# page.all("##{facet_name} a.facet_select").map(&:text) -# end -# -# def number_pattern -# /[1-9](?:\d{0,2})(?:,\d{3})*(?:\.\d*[1-9])?|0?\.\d*[1-9]|0/ -# end From f6a8eb27973763cb113831747fc53241983a5083 Mon Sep 17 00:00:00 2001 From: Anusha Ranganathan Date: Sat, 19 Dec 2015 18:45:23 +0000 Subject: [PATCH 03/12] Refactored the rake task to index records into a class and added rspec tests --- .gitignore | 4 + app/models/concerns/iiif_manifest_data.rb | 8 +- app/models/concerns/json_reader.rb | 3 +- lib/data_indexer.rb | 112 +++++++ .../jr903ng8662_list_text-Ar.json | 267 +++++++++++++++ .../jr903ng8662_list_text-Av.json | 293 +++++++++++++++++ .../kq131cs7229_list_text-f104v.json | 306 ++++++++++++++++++ .../kq131cs7229_list_text-f8r.json | 254 +++++++++++++++ .../iiif_manifest_fixtures.rb | 4 + .../manifest_001_stub.json | 88 +++++ .../manifest_002_stub.json | 114 +++++++ .../stub_manifest_urls.csv | 2 + spec/tasks/data_indexer_spec.rb | 202 ++++++++++++ 13 files changed, 1655 insertions(+), 2 deletions(-) create mode 100644 lib/data_indexer.rb create mode 100644 spec/fixtures/annotation_records/jr903ng8662_list_text-Ar.json create mode 100644 spec/fixtures/annotation_records/jr903ng8662_list_text-Av.json create mode 100644 spec/fixtures/annotation_records/kq131cs7229_list_text-f104v.json create mode 100644 spec/fixtures/annotation_records/kq131cs7229_list_text-f8r.json create mode 100644 spec/fixtures/iiif_manifest_records/manifest_001_stub.json create mode 100644 spec/fixtures/iiif_manifest_records/manifest_002_stub.json create mode 100644 spec/fixtures/iiif_manifest_records/stub_manifest_urls.csv create mode 100644 spec/tasks/data_indexer_spec.rb diff --git a/.gitignore b/.gitignore index d239ac5..1f3a818 100644 --- a/.gitignore +++ b/.gitignore @@ -34,6 +34,10 @@ config/environments/*.local.yml # Ignore coverage directory coverage +#Ignore all data files +data/* +!data/.keep + # Ignore IDE and rubocop files .idea/* .rubocop.yml diff --git a/app/models/concerns/iiif_manifest_data.rb b/app/models/concerns/iiif_manifest_data.rb index db27260..19cf74e 100644 --- a/app/models/concerns/iiif_manifest_data.rb +++ b/app/models/concerns/iiif_manifest_data.rb @@ -59,6 +59,12 @@ def fetch_modsxml uri = URI.parse(url) uri.scheme = 'https' require 'open-uri' - self.modsxml = open(uri.to_s).read + begin + self.modsxml = open(uri.to_s).read + rescue Timeout::Error, Errno::EINVAL, Errno::ECONNRESET, Errno::ETIMEDOUT, EOFError, + Net::HTTPBadResponse, Net::HTTPHeaderSyntaxError, Net::ProtocolError, OpenURI::HTTPError => the_error + puts "\nOpen URI error for #{uri}\n\t#{the_error.message}" # TODO: Add to log + return nil + end end end diff --git a/app/models/concerns/json_reader.rb b/app/models/concerns/json_reader.rb index 284bd3c..d453de7 100644 --- a/app/models/concerns/json_reader.rb +++ b/app/models/concerns/json_reader.rb @@ -8,7 +8,8 @@ def from_url(url, _encoding = nil) require 'open-uri' begin JSON.parse(open(url).read) - rescue OpenURI::HTTPError => the_error + rescue Timeout::Error, Errno::EINVAL, Errno::ECONNRESET, Errno::ETIMEDOUT, EOFError, + Net::HTTPBadResponse, Net::HTTPHeaderSyntaxError, Net::ProtocolError, OpenURI::HTTPError => the_error puts "\nOpen URI error for #{url}\n\t#{the_error.message}" # TODO: Add to log return nil end diff --git a/lib/data_indexer.rb b/lib/data_indexer.rb new file mode 100644 index 0000000..7a4347a --- /dev/null +++ b/lib/data_indexer.rb @@ -0,0 +1,112 @@ +require 'csv' +class DataIndexer + + # Index mods and annotations data from a list of manifest urls or each url + # Params: + # +collection+:: Name of collection the manifest(s) belong to + # +csv_file+:: string containing the path to the csv file. + # File to have one url per line and no header + # +manifest_url+:: url to the mnaifest file + # Usage: + # DataIndexer.new('collection_name', 'file_path').run + # to index csv file + # DataIndexer.new('collection_name', nil, 'url').run + # to index one manifest at url + def initialize(collection = nil, csv_file = nil, manifest_url = nil) + @collection = collection + @csv_file = csv_file + @url = manifest_url + @manifest = nil + @title = nil + @doc = SolrDocument.new + @solr = Blacklight.default_index.connection + end + + # Index and commit mods and annotations data either + # from a list of manifest urls or each url + # depending on the options + def run + if !@csv_file.blank? && File.exist?(@csv_file) + index_csv + commit + elsif @url + index + commit + end + end + + # Index mods and annotations data from a list of manifest urls + # csv file to contain one url per line and no header + def index_csv + return if @csv_file.blank? || !File.exist?(@csv_file) + CSV.foreach(@csv_file) do |row| + @url = row[0] + index + end + end + + # Index MODS and annotation lists fetched from the IIIF manifest url + def index + fetch_manifest + if define_doc + index_mods + index_annotations + end + end + + # Commit the data indexed in solr + def commit + @solr.commit + end + + protected + + # Get the manifest data + def fetch_manifest + @manifest = IiifManifest.new(@url) + @manifest.read_manifest + end + + def define_doc + unless @manifest.title.blank? || @manifest.druid.blank? + @doc[:collection] = @collection + @doc[:druid] = @manifest.druid + @doc[:iiif_manifest] = @url + @doc[:mods_url] = @manifest.mods_url + @doc[:modsxml] = @manifest.fetch_modsxml + return true + end + false + end + + # index mods data in solr + def index_mods + solr_doc = @doc.mods_to_solr + unless solr_doc.blank? + @title = solr_doc['title_search'] if solr_doc.key?('title_search') + @solr.add solr_doc + end + end + + # index all of the annotations data in solr + def index_annotations + list_count = 0 + doc_count = 0 + add_count = 0 + @manifest.annotation_lists.each do |al| + annotation_list = @doc.read_annotation(al['@id']) + @doc.resources(annotation_list).each do |a| + data = { "annotation" => a, "manuscript" => @title, "folio" => al['label'], "url" => al['@id'] } + solr_doc = @doc.annotation_to_solr(data) + unless solr_doc.blank? + @solr.add solr_doc + add_count += 1 + end + doc_count += 1 + end + list_count += 1 + end + [list_count, doc_count, add_count] + end + +end diff --git a/spec/fixtures/annotation_records/jr903ng8662_list_text-Ar.json b/spec/fixtures/annotation_records/jr903ng8662_list_text-Ar.json new file mode 100644 index 0000000..690fef7 --- /dev/null +++ b/spec/fixtures/annotation_records/jr903ng8662_list_text-Ar.json @@ -0,0 +1,267 @@ +{ + "@context": "http://www.shared-canvas.org/ns/context.json", + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-Ar.json", + "@type": "sc:AnnotationList", + "resources": [ + { + "@id": "_:N5cacb373644545f489a434db6393d2f5", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:Nd27cb238814c4f54a6505bd1f4ffe59f", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "Notice", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-7#xywh=339,239,3325,272" + }, + { + "@id": "_:N40b798de8b8e441bb946e98cd8d96f7f", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N06218c220b2049bc9bc3795e37d634b4", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "Il y a dans ce manuscrit 8 lays", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-7#xywh=339,511,3325,215" + }, + { + "@id": "_:N74fa17522f2f4cd1a1ba75ce7a8adf8b", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N96c0a1a89b97424eafc23e14ae31e45d", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "et 136 balades, des rondeaux des serventoys etc.", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-7#xywh=339,727,3325,234" + }, + { + "@id": "_:N21f440300ed24b1482a146302d6df059", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N603e702d95c2470291425ac62bae7ac0", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "voici les lays et balades qui ont des titres", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-7#xywh=339,961,3325,296" + }, + { + "@id": "_:N3b13b5478f0e458a850f74fdeb0e6acb", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N25205d9d4dbb4c6c82fa2b06675f0fde", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "Feuillets 2. Lay du roy Charles VI", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-7#xywh=339,1258,3325,272" + }, + { + "@id": "_:N80d00c07f12b462796ce3eda01f95712", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N17175bddffef432b82a5980d6eb320ae", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "3. Lay du bon conestable B[er]tran du Guesclin", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-7#xywh=339,1531,3325,229" + }, + { + "@id": "_:Nfe3ed4c9b1444751995aff9afa428525", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N3c5ff2222e7746389f7fa2e6aa0e16b4", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "4. le lay de dep[ar]tement", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-7#xywh=339,1760,3325,191" + }, + { + "@id": "_:N2502ca0f6ef64e9f8ec390e460074413", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N74743a9cd91549dcafc0d7300fa0268e", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "5. cy ensuit le Lay en co[m]plainte fait p[our] la", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-7#xywh=339,1952,3325,181" + }, + { + "@id": "_:Ncdab4060923f49e7b3e894a9d763fb2a", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N420d8d6c59f84f5e83ae3642050675ab", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "bonne ville de Paris", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-7#xywh=339,2134,3325,191" + }, + { + "@id": "_:Neff18473d8914285b46ebb9e947facb1", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N566983554b3046f982152da52efb7de7", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "7. complainte d'amoureus", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-7#xywh=339,2325,3325,138" + }, + { + "@id": "_:Ndc3974fa74cd41f58af7e7237d8508b2", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N7c23a1965d3e46e39332d69efdf3e2d4", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "10. balade de maist[re] fumeus", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-7#xywh=339,2464,3325,234" + }, + { + "@id": "_:Ne2b6e034d1084a2bbc863e0df922d727", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N5e8ffeaf80e14539b31448d43afc2377", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "10. Serventoys amoureux de xxv poins", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-7#xywh=339,2698,3325,253" + }, + { + "@id": "_:N823357e40dba44f59770ca9db2965c3d", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:Nffa3f6580e144bfdaf27671aaf109b75", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "10. balade du chastel", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-7#xywh=339,2952,3325,186" + }, + { + "@id": "_:N8cb58cd3249a4ed58ed407a7af79cd5e", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N56ecc5ee0656482686dec35a08d1f0d9", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "11. balade p[ar] maniere de doctrine", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-7#xywh=339,3138,3325,215" + }, + { + "@id": "_:N395722ef55c94467a1b401a90f6afde7", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N1bff4efb427e4ff1905be15cda9285b0", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "12. balade du monde", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-7#xywh=339,3354,3325,172" + }, + { + "@id": "_:Nda59fce4a7e246a8bfdd8c9f3569b31e", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N0ee20e2d40654bd1a18dc75a5ab79b28", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "17. balade faicte contre le duc de Bretaigne", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-7#xywh=339,3526,3325,210" + }, + { + "@id": "_:N0c7a5e23e17d41b69d9c636986bd20f7", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N6e17cf63f9324502b6a3cce33a9140ab", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "environ l'an mil iii iiii dix p[our]ce qu'il", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-7#xywh=339,3737,3325,167" + }, + { + "@id": "_:N1274dc1bbe0a43518c906cbeb16f1df6", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N02d484ddcd9747d0b23125a328c49bbb", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "prins le sire de clicon connestable de", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-7#xywh=339,3904,3325,143" + }, + { + "@id": "_:N89025b3679dc40ba87da1cdcb4898281", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N5e1ed4e5cb684183bf699d6dd1977e5f", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "France et le sire de beaumanoir", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-7#xywh=339,4048,3325,181" + }, + { + "@id": "_:N1c0e25d27f2449438d87f136a4496e4b", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:Nbe451f54da1b472388f3aa041573643b", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "18. balade notable", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-7#xywh=339,4229,3325,248" + } + ] +} \ No newline at end of file diff --git a/spec/fixtures/annotation_records/jr903ng8662_list_text-Av.json b/spec/fixtures/annotation_records/jr903ng8662_list_text-Av.json new file mode 100644 index 0000000..cc87206 --- /dev/null +++ b/spec/fixtures/annotation_records/jr903ng8662_list_text-Av.json @@ -0,0 +1,293 @@ +{ + "@context": "http://www.shared-canvas.org/ns/context.json", + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-Av.json", + "@type": "sc:AnnotationList", + "resources": [ + { + "@id": "_:Ne657af8dc1964bd98b6a30e1856e03c5", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:Na5af815edf7a4ff8aab98846bfef3af2", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-8#xywh=154,111,3507,193" + }, + { + "@id": "_:N9b80cd44483b4228ab6b61ebd7956c66", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N7b4a3b798d414128ad0eef9942573766", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "20. exhortacio pacis inter francos et anglos", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-8#xywh=154,304,3507,164" + }, + { + "@id": "_:N12751530ebe8472cb27bcbab593fa7af", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N0580d26cfb9d45ce88c0ea8dbed3349a", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "24. cy commence le breviaire des nobles", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-8#xywh=154,469,3507,266" + }, + { + "@id": "_:N613d2319bddd48bfb3e7ed2cc375e8e1", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N9596a12098e0470cbd0fbe4b0eb25ecf", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "26. lay notable", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-8#xywh=154,735,3507,290" + }, + { + "@id": "_:Na83b6817166a4b64882d112dd3c7ee25", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N86b879711bdd4d11befdf35e50e242b4", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "27. paris ethimologie", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-8#xywh=154,1025,3507,237" + }, + { + "@id": "_:N68604598ae7d41098e0c01c56dcca48a", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N53b3372ead1c4f858ae8e7ace968b3bd", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "28. balade moraliz\u00e9e", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-8#xywh=154,1262,3507,183" + }, + { + "@id": "_:Nafd285f4c51e435eb734bfb6454f7cde", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:Ne0877012070c44a5995266977e76f208", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "28. lay et complainte de la mort d'une vaillant femme et religieuse.", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-8#xywh=154,1446,3507,183" + }, + { + "@id": "_:N1bb24093f0ee4d078401a7c214037cc9", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:Nebbea46c86ba45a696b1d003cadd2edf", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "28. Cy comence l'art de ditier et de faire chancons / balades / virelays,", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-8#xywh=154,1630,3507,149" + }, + { + "@id": "_:Nab36558aea0c4faca1fefe989c60273a", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N4ef26eb7cb16455ebd021bd6f18e3366", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "et rondeaus et come anc[ie]nnement nul n'osoit aprendre les sept", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-8#xywh=154,1780,3507,125" + }, + { + "@id": "_:Nec573e09ad094df888fc2c766606a8ef", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N3d4d13fcd9d144ae8410f931ed62a1fd", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "ars liberauls cy apres d\u00e9clair\u00e9s s'il n'estoit noble", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-8#xywh=154,1906,3507,145" + }, + { + "@id": "_:N16fdc70170a04cb2abc94b9918c181bc", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:Naef078369c564d83a0e19de96f228949", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "[et \u00e0 la fin] ce fut fait le xxv jour de [novembre] l'an mil ccc iiii et xii.", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-8#xywh=154,2051,3507,154" + }, + { + "@id": "_:Nbdd9504b7fbe4945bcc673cddf9ec5cc", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N1edbb1080fb2479aa9a5432743a5cb70", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "32. d'un notable enseignement p[our] continuer sant\u00e9 en corps de homme", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-8#xywh=154,2206,3507,251" + }, + { + "@id": "_:Nfbae7b014237491983d6a0ebfd83ab78", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:Nf2a0bd23b6fd4bcd948c6c33a29e08a8", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "33. balade de Eustace Morel", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-8#xywh=154,2457,3507,188" + }, + { + "@id": "_:N0f7065fb199e4344b342270553a2e64b", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:Nea48ee541ca046229ddb08f1abec99f2", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "34. balade qui monstre les causes et raisons dont vient l'epydemie", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-8#xywh=154,2646,3507,203" + }, + { + "@id": "_:N35e5a51233324c478dd80166b0e66b54", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N885e57318bfc4cfc945a35ee65a8c925", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "34. balade et les rem\u00e8des contre la dicte epyd\u00e9mie.", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-8#xywh=154,2849,3507,159" + }, + { + "@id": "_:Ne63936be7efa4cd896afb089fb9e40c9", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N9add9879da444f51936d3872c0d073c4", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "34. balade faicte de douleurs p[our] jeunesse qui va ailleurs", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-8#xywh=154,3009,3507,212" + }, + { + "@id": "_:N4c6a1f7b17d641b1a70b19da517f8b4a", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:Nf640fcb2d28d4a88986088bda61a21ff", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "34. balade du regret de jeunesse.", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-8#xywh=154,3222,3507,212" + }, + { + "@id": "_:N3758725fd6bc460d9c7f199328abf6c6", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N50ebb1f15ac5498ab6f78fb42ce23b64", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "35. demandes et responses pour mariages selon les", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-8#xywh=154,3434,3507,179" + }, + { + "@id": "_:N9d35e586826443c29ed007ff3a4cc802", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N79156796321c4d3cba1cc13b30728b0b", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "personnages.", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-8#xywh=154,3613,3507,198" + }, + { + "@id": "_:Nef4e030363bc44f59bb7aea84a263a24", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N46402cfbd8ec487f915801b1264297e7", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "fin", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-8#xywh=154,3812,3507,106" + }, + { + "@id": "_:N676e75bc916e46199fb5e326fa1d0b52", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N58835116eb7544acbdb086089dca8cf2", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "5 juin 1787", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-8#xywh=154,3918,3507,343" + }, + { + "@id": "_:N78e88e145c4b45b087ff3c7e476a846c", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:Nf435902e46244e409e5892a178ce3e00", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "E. Rondeau", + "language": "frm" + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-8#xywh=154,4262,3507,382" + } + ] +} \ No newline at end of file diff --git a/spec/fixtures/annotation_records/kq131cs7229_list_text-f104v.json b/spec/fixtures/annotation_records/kq131cs7229_list_text-f104v.json new file mode 100644 index 0000000..e0ab116 --- /dev/null +++ b/spec/fixtures/annotation_records/kq131cs7229_list_text-f104v.json @@ -0,0 +1,306 @@ +{ + "@context": "http://www.shared-canvas.org/ns/context.json", + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f104v.json", + "@type": "sc:AnnotationList", + "resources": [ + { + "@id": "_:Neb69b82f72934ab68d8b3849e11bf12b", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N8ee6e26e40144872bcea52ca7ab33a4e", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "Hi sunt murmurantes que-", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-36#xywh=1312,711,1400,264" + }, + { + "@id": "_:N127990db185646eab6a14e114aece398", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N2d9c5f62590944f9aa08ce2deb992d1b", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "-ruli s[e]c[un]d[u]m desideria sua", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-36#xywh=1312,976,1400,248" + }, + { + "@id": "_:N68e48d30268940b58769e48f76eb5f4f", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N3171c3590b6b46fc8254d94de5707b4f", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "ambulantes [et] os illorum", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-36#xywh=1312,1224,1400,259" + }, + { + "@id": "_:N1bacede45c024bb9a658c5ba2a8e79a7", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N69b6a11812804c19a8b2d1ac40bb5d91", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "loquitur superbiam miran-", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-36#xywh=1312,1483,1400,237" + }, + { + "@id": "_:Ne7b829ff686b4f5e9c872487778ea3df", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N40c3e6fc52774e1d9b0a8a84988ea34e", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "-tes personas questus causa", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-36#xywh=1312,1720,1400,270" + }, + { + "@id": "_:N652b30e1ba124095ab698016c789a8d7", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N998b1561e4fd4771b662aeb79c7b898e", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "Vos autem k[arissi]mi memores", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-36#xywh=1312,1990,1400,275" + }, + { + "@id": "_:Nb5ce992287e64f43b058b9ce6895ee62", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N02c32a3a02a54c139d83a30198de959b", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "estote verborum que p[re]dic-", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-36#xywh=1312,2266,1400,270" + }, + { + "@id": "_:Nf733a918e2f640ffa1a7ce1a98548bc3", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:Ne51ff003c9f64ca58ac8d919547403cf", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "-ta sunt ab ap[osto]lis d[omi]ni", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-36#xywh=1312,2536,1400,204" + }, + { + "@id": "_:N1452f547c46841d0944fde71546252ed", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:Nc5327f303b1b4f87ae13bd130101b758", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "nostri [Jesu] [Christi] qui dicebant", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-36#xywh=1312,2740,1400,237" + }, + { + "@id": "_:N43723659766543cd8c44a89b4fb45a33", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N34e880d86526443aaf16b3604eb72583", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "vobis q[uonia]m in novissimis tem-", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-36#xywh=1312,2978,1400,275" + }, + { + "@id": "_:N511d24e4794b49d7a2bd8f2e52a2794f", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:Nf98792b6fbe548f5b4010cc88c49d438", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "-poribus venient illusores se-", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-36#xywh=1312,3253,1400,248" + }, + { + "@id": "_:N7cfbc139443c40048eca5bc65a6a66e6", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N839570f988444ea58fe1e1065c46f57b", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "-cundum desideria sua am-", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-36#xywh=1312,3502,1400,220" + }, + { + "@id": "_:Nb2e4880e1697458687d44a1c514e6c1a", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:Nc5fe6a0b866d40c3afd620acabaf03d9", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "-bulantes non in pietate Hi", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-36#xywh=1312,3722,1400,215" + }, + { + "@id": "_:Nc89f4bff99054752b603ada3adaf0380", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:Ne3ba79b39ef54b3c864141b6d51cd32a", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "sunt qui segregant semetipsos", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-36#xywh=1312,3937,1400,237" + }, + { + "@id": "_:N8aed761b70274161b814fee97eb5d505", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:Necc498ea17bf4b1a801bddfa5785feea", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "animales sp[iritu]m non habentes", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-36#xywh=1312,4174,1400,226" + }, + { + "@id": "_:N348e69471c3f414ca649acf4edbf36c6", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N04d01d49acc4434785d8a7b6fde99852", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "tanto amplius quisq[ue] murmurat [et]", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-36#xywh=187,727,1108,154" + }, + { + "@id": "_:Ne3e3331543a14e7288ecbb1a465f8697", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:Nba6375bcaf2942a5a098c0e871ec0576", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "queritur de p[re]sentib[us] eccl[esi]e laborib[us]", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-36#xywh=187,882,1108,82" + }, + { + "@id": "_:Nac336fc496a447b58f8dae9ec33c8264", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N9795056d38934f13b79372a74be7ff68", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "quanto minus in se desid[er]ia carnis", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-36#xywh=187,965,1108,66" + }, + { + "@id": "_:Nd2ceab7e5dea473483dec19a03c0bfa0", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N41733eb345b4458bb2cc0579bb710363", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "extinxit. [At] contra s[anctu]s daniel [et] ce-", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-36#xywh=187,1031,1108,71" + }, + { + "@id": "_:Nab1bd5cbf9ca4152969ec503a167fc98", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:Naccba91786b2488e8b601f5aa8e89453", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "-t[er]i s[an]c[t]o[rum] desid[er]io[rum] viri quanto obni-", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-36#xywh=187,1103,1108,82" + }, + { + "@id": "_:Nbb576c26a99a436ca139652b50824488", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:N1886e4a17b174e0e8a99ffabe6405888", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "-xe sola sup[er]na desid[er]ant tanto ma-", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-36#xywh=187,1185,1108,71" + }, + { + "@id": "_:N26e2cc65e43a4af3ac1304b27749dd41", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:Nbf8f35f2e7014b97acc4f90864847a14", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "-gis despiciunt transitoria [et] cuncta", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-36#xywh=187,1257,1108,104" + }, + { + "@id": "_:N48b4f2ecc6b64b97b2448c1a3aa94faf", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "_:Nc68484f0de964de289bce60467944aa0", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "q[ue] videntur adv[er]sa", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-36#xywh=187,1362,1108,71" + } + ] +} \ No newline at end of file diff --git a/spec/fixtures/annotation_records/kq131cs7229_list_text-f8r.json b/spec/fixtures/annotation_records/kq131cs7229_list_text-f8r.json new file mode 100644 index 0000000..1f9d72a --- /dev/null +++ b/spec/fixtures/annotation_records/kq131cs7229_list_text-f8r.json @@ -0,0 +1,254 @@ +{ + "@context": "http://www.shared-canvas.org/ns/context.json", + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f8r.json", + "@type": "sc:AnnotationList", + "resources": [ + { + "@id": "_:N43deaea09a5345379218db8cb72600c3", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "7377e5fe51c46454bb01b62a817a4d42", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "Erant aut[em] qui manducaverant", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,450,1017,166" + }, + { + "@id": "_:N14eeb4370547431db7bb7fc075e43210", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "c15b3c62f8532a37ca4ba1c9deb84d6a", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "quasi quatuor milia hominu[m] et", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,616,1017,153" + }, + { + "@id": "_:N1a08bd845f484bd9960cf323949e8f6e", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "bd8f9e22c2d2d6691e78f6d02143a80d", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "et dimisit eos Et stati[m] ascendens na-", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,769,1017,162" + }, + { + "@id": "_:N82e5366197f24bc1ae583248d73e36fc", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "d2771941ce394de6aea13779d4f058ea", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "-ve[m] cu[m] discip[u]lis suis venit in par-", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,931,1017,180" + }, + { + "@id": "_:N8734944c5867422dbb2e05ce5a9386af", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "deabaa77448a61c561836d1fb064f885", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "-tes dalmanutha [Et] exier[un]t phari-", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,1111,1017,162" + }, + { + "@id": "_:Nec72601c72094655ae7b0df521dd3e7f", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "61574db3e19725509b692c3a099e0bc7", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "-sei et ceper[un]t conquirere cu[m] eo que-", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,1274,1017,153" + }, + { + "@id": "_:N689608cc1b53445c8cbc42ffb3929a6d", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "8f42470a851d3b5c1af46b8e7477f861", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "-rentes ab illo signu[m] de celo te[m]pta[n]tes", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,1427,1017,175" + }, + { + "@id": "_:Nad1e54bc8428459b804639919f670908", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "677b8baf5f31cc035202320f74a59827", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "eu[m] [Et] ingemiscens sp[irit]u ait Q[ui]d g[e]n[er]a-", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,1602,1017,139" + }, + { + "@id": "_:N51325f819f1e4bac8558b71419ae29a3", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "e91f46cf59fac81d268322d7af89378b", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "-tio ista signu[m] querit Amen dico", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,1742,1017,153" + }, + { + "@id": "_:Ne1d69f7bca434ef583a1d3711237cbb7", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "654a116a63555dfcef929d207c5cc85d", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "vob[is] si dabit[ur] g[e]n[er]ationi isti signum", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,1895,1017,162" + }, + { + "@id": "_:N34ba429a91c142f6b19a89b28780bff7", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "b2c3fdb829625d9edad520358ba24e2b", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "Et dimittens eos ascendens it[eru]m na-", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,2057,1017,153" + }, + { + "@id": "_:N458e8ba2c83e48ef9f8039209aa28013", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "d75d079522a83fd9c29ffdc54e0c8433", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "-ve[m] abiit t[ra]ns fredu[m] et obliti s[un]t sume-", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,2210,1017,148" + }, + { + "@id": "_:Ne96dfb3e84ee42c39a24cad1ba1c75ec", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "ad687791dc66c33d889c65d28a919406", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "-re panes et nisi unu[m] pane[m] secu[m] no[n]", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,2359,1017,175" + }, + { + "@id": "_:N8b42c7d2e7de4cf38a37ab0da9893059", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "ef1d64bc4e7fb0cb227a9dab4190116b", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "habebant in navi Et p[re]cipiebat", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,2534,1017,139" + }, + { + "@id": "_:N273697814e554ba3a26d0c49bf67daed", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "91c038e14ba8af0e9b5df0e98b830b2e", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "eis dicens Videte cavete a ferme[n]-", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,2674,1017,189" + }, + { + "@id": "_:N3aaf92430d484bf1b2869b333536395a", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "149e313d4be2f9ed97d51ba1a71a36c6", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "-to phariseo[rum] et fermento herodis", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,2863,1017,135" + }, + { + "@id": "_:N9dddfad68e9c47238f2827260742ba33", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "0ced5cdb34ba7d00348e25e435da7824", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "Et cogitabant ad alt[er]utru[m] dicentes", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,2998,1017,162" + }, + { + "@id": "_:Nc9444cda88ad42ae888a42e15d17f83b", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "aff9de356f29c386cd506b86d2798997", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "Quia panes no[n] h[abe]m[u]s quo cognito", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,3160,1017,184" + }, + { + "@id": "_:Nbf9f14138d3d4046b5bbeb6989f1a2d7", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "ed3bc7f8a8205ef288978bee5cc80410", + "@type": "cnt:ContentAsText", + "format": "text/plain", + "chars": "[Jesus] ait illis Quid cogitatis q[uia] pane", + "language": "lat" + }, + "on": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/canvas/canvas-3#xywh=600,3344,1017,135" + } + ] +} \ No newline at end of file diff --git a/spec/fixtures/iiif_manifest_records/iiif_manifest_fixtures.rb b/spec/fixtures/iiif_manifest_records/iiif_manifest_fixtures.rb index e45ff8d..be076b1 100644 --- a/spec/fixtures/iiif_manifest_records/iiif_manifest_fixtures.rb +++ b/spec/fixtures/iiif_manifest_records/iiif_manifest_fixtures.rb @@ -15,4 +15,8 @@ def manifest_url_003 def manifest_url_004 'https://purl.stanford.edu/bb389yg4719/iiif/manifest.json' end + + def manifest_csv_file + "#{::Rails.root}/spec/fixtures/iiif_manifest_records/stub_manifest_urls.csv" + end end diff --git a/spec/fixtures/iiif_manifest_records/manifest_001_stub.json b/spec/fixtures/iiif_manifest_records/manifest_001_stub.json new file mode 100644 index 0000000..39c2cec --- /dev/null +++ b/spec/fixtures/iiif_manifest_records/manifest_001_stub.json @@ -0,0 +1,88 @@ +{ + "@context": "http://www.shared-canvas.org/ns/context.json", + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/manifest.json", + "@type": "sc:Manifest", + "label": "Manuscript fragment of the Gospels and Canonical Epistles, glossed", + "description": "From a manuscript which comprised the third and fourth Gospels and The Canonical Epistles, glossed, in 105 leaves. The Gloss on St. John was composed in the eleventh century by Anselm of Laon (d. 1117) and the Gloss on the Canonical Epistles probably dates from about 1100 and may be the work of Anselm or his brother Ralph (d. 1133).\", \"Purchased, 1985.", + "attribution": "Provided by the Stanford University Libraries", + "seeAlso": { + "@id": "http://purl.stanford.edu/kq131cs7229.mods", + "dcterms:format": "application/mods+xml" + }, + "within": "http://dms-data.stanford.edu/data/manifests/Stanford/", + "sequences": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/normal", + "@type": "sc:Sequence", + "label": "Current page order", + "canvases": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-3", + "@type": "sc:Canvas", + "label": "f. 8r", + "height": "4502", + "width": "3016", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-3", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/sulmss_misc305_008r_SM", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4502", + "width": "3016", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fsulmss_misc305_008r_SM", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-3" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f8r.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-36", + "@type": "sc:Canvas", + "label": "f. 104v", + "height": "5515", + "width": "3931", + "images": [ + { + "@id": "http://dms-data.stanford.edu/Stanford/kq131cs7229/imageanno/anno-36", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/kq131cs7229/kq131cs7229_05_0016", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "5515", + "width": "3931", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/kq131cs7229%252Fkq131cs7229_05_0016", + "@context": "http://iiif.io/api/image/2/context.json", + "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/Stanford/kq131cs7229/canvas/canvas-36" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f104v.json", + "@type": "sc:AnnotationList" + } + ] + } + ] + } + ] +} diff --git a/spec/fixtures/iiif_manifest_records/manifest_002_stub.json b/spec/fixtures/iiif_manifest_records/manifest_002_stub.json new file mode 100644 index 0000000..d902184 --- /dev/null +++ b/spec/fixtures/iiif_manifest_records/manifest_002_stub.json @@ -0,0 +1,114 @@ +{ + "@context": "http://www.shared-canvas.org/ns/context.json", + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/manifest.json", + "@type": "sc:Manifest", + "label": "Biblioth\u00e8que nationale de France, NAF 6221", + "description": "displayLabelSummarycontentM\u00e9langes. II Recueil de 154 lais, ballades, rondeaux et serventois, dont 71 au moins sont d'Eustache DESCHAMPS", + "attribution": "Provided by the Stanford University Libraries", + "seeAlso": { + "@id": "http://purl.stanford.edu/jr903ng8662.mods", + "dcterms:format": "application/mods+xml" + }, + "sequences": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/normal", + "@type": "sc:Sequence", + "label": "Current page order", + "canvases": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-1", + "@type": "sc:Canvas", + "label": "plat sup\u00e9rieur", + "height": "4899", + "width": "3979", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-1", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000001", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4899", + "width": "3979", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000001", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-1" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-7", + "@type": "sc:Canvas", + "label": "Ar", + "height": "4785", + "width": "3760", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-7", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000007", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4785", + "width": "3760", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000007", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-7" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-Ar.json", + "@type": "sc:AnnotationList" + } + ] + }, + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-8", + "@type": "sc:Canvas", + "label": "Av", + "height": "4838", + "width": "3769", + "images": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/imageanno/anno-8", + "@type": "oa:Annotation", + "motivation": "sc:painting", + "resource": { + "@id": "http://stacks.stanford.edu/image/jr903ng8662/T0000008", + "@type": "dctypes:Image", + "format": "image/jpeg", + "height": "4838", + "width": "3769", + "service": { + "@id": "https://stacks.stanford.edu/image/iiif/jr903ng8662%252FT0000008", + "@context": "http://iiif.io/api/image/2/context.json", +"profile": "http://library.stanford.edu/iiif/image-api/1.1/conformance.html#level1" + } + }, + "on": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/canvas/canvas-8" + } + ], + "otherContent": [ + { + "@id": "http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-Av.json", + "@type": "sc:AnnotationList" + } + ] + } + ] + } + ] +} diff --git a/spec/fixtures/iiif_manifest_records/stub_manifest_urls.csv b/spec/fixtures/iiif_manifest_records/stub_manifest_urls.csv new file mode 100644 index 0000000..abb1ab5 --- /dev/null +++ b/spec/fixtures/iiif_manifest_records/stub_manifest_urls.csv @@ -0,0 +1,2 @@ +http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/stub/manifest.json +http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/stub/manifest.json diff --git a/spec/tasks/data_indexer_spec.rb b/spec/tasks/data_indexer_spec.rb new file mode 100644 index 0000000..a33a2ce --- /dev/null +++ b/spec/tasks/data_indexer_spec.rb @@ -0,0 +1,202 @@ +require 'spec_helper' +require 'data_indexer' + +describe 'DataIndexer' do + include IiifManifestFixtures + #WebMock.disable_net_connect!(:allow => [/127.0.0.1/, /localhost/] ) + before(:all) do + @stub_solr = Blacklight.default_index.connection + # @stub_solr = double('solr') + # expect(@stub_solr).to receive(:solr).at_least(1).times.and_return(@stub_solr) + end + before(:each) do + @response = File.open("#{::Rails.root}/spec/fixtures/iiif_manifest_records/manifest_001_stub.json").read + stub_request(:get, 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/stub/manifest.json') + .with(headers: { 'Accept' => '*/*', 'User-Agent' => 'Ruby' }) + .to_return(status: 200, body: @response, headers: {}) + @response2 = File.open("#{::Rails.root}/spec/fixtures/mods_records/kq131cs7229.mods.xml").read + stub_request(:get, 'https://purl.stanford.edu/kq131cs7229.mods') + .with(headers: { 'Accept' => '*/*', 'User-Agent' => 'Ruby' }) + .to_return(status: 200, body: @response2, headers: {}) + @response3 = File.open("#{::Rails.root}/spec/fixtures/annotation_records/kq131cs7229_list_text-f8r.json").read + stub_request(:get, 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f8r.json') + .with(headers: { 'Accept' => '*/*', 'User-Agent' => 'Ruby' }) + .to_return(status: 200, body: @response3, headers: {}) + @response4 = File.open("#{::Rails.root}/spec/fixtures/annotation_records/kq131cs7229_list_text-f104v.json").read + stub_request(:get, 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/list/text-f104v.json') + .with(headers: { 'Accept' => '*/*', 'User-Agent' => 'Ruby' }) + .to_return(status: 200, body: @response4, headers: {}) + @response5 = File.open("#{::Rails.root}/spec/fixtures/iiif_manifest_records/manifest_002_stub.json").read + stub_request(:get, 'http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/stub/manifest.json') + .with(headers: { 'Accept' => '*/*', 'User-Agent' => 'Ruby' }) + .to_return(status: 200, body: @response5, headers: {}) + @response6 = File.open("#{::Rails.root}/spec/fixtures/mods_records/jr903ng8662.mods.xml").read + stub_request(:get, 'https://purl.stanford.edu/jr903ng8662.mods') + .with(headers: { 'Accept' => '*/*', 'User-Agent' => 'Ruby' }) + .to_return(status: 200, body: @response6, headers: {}) + @response7 = File.open("#{::Rails.root}/spec/fixtures/annotation_records/jr903ng8662_list_text-Ar.json").read + stub_request(:get, 'http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-Ar.json') + .with(headers: { 'Accept' => '*/*', 'User-Agent' => 'Ruby' }) + .to_return(status: 200, body: @response7, headers: {}) + @response8 = File.open("#{::Rails.root}/spec/fixtures/annotation_records/jr903ng8662_list_text-Av.json").read + stub_request(:get, 'http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/list/text-Av.json') + .with(headers: { 'Accept' => '*/*', 'User-Agent' => 'Ruby' }) + .to_return(status: 200, body: @response8, headers: {}) + end + + describe '#new' do + before do + @di = DataIndexer.new('test collection', 'csv_file_path', 'manifest_url') + end + it 'should set the solr client' do + expect(@di.instance_variable_get('@solr')).to eq(@stub_solr) + end + it 'should set the collection' do + expect(@di.instance_variable_get('@collection')).to eq('test collection') + end + it 'should set the csv file' do + expect(@di.instance_variable_get('@csv_file')).to eq('csv_file_path') + end + it 'should set the manifest url' do + expect(@di.instance_variable_get('@url')).to eq('manifest_url') + end + it 'should set the title' do + expect(@di.instance_variable_get('@title')).to be_nil + end + it 'should set the solr document' do + expect(@di.instance_variable_get('@doc')).to be_a(SolrDocument) + end + it 'should set the solr client' do + expect(@di.instance_variable_get('@collection')).to eq('test collection') + end + end + + describe '#fecth_manifest' do + before do + @di = DataIndexer.new('test collection', nil, 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/stub/manifest.json') + @di.send(:fetch_manifest) + end + it 'should have a manifest' do + expect(@di.instance_variable_get('@manifest').manifest).to be_a(Hash) + # expect(@di.instance_variable_get('@manifest').manifest).to eq(JSON.parse(@response)) + end + it 'should have a title' do + expect(@di.instance_variable_get('@manifest').title).to eq('Manuscript fragment of the Gospels and Canonical Epistles, glossed') + end + it 'should have a druid' do + expect(@di.instance_variable_get('@manifest').druid).to eq('kq131cs7229') + end + it 'should have a mods_url' do + expect(@di.instance_variable_get('@manifest').mods_url).to eq('http://purl.stanford.edu/kq131cs7229.mods') + end + it 'should have annotation lists' do + expect(@di.instance_variable_get('@manifest').annotation_lists).to be_a(Array) + expect(@di.instance_variable_get('@manifest').annotation_lists.length).to eq(2) + end + end + + describe '#define_doc' do + before do + @di = DataIndexer.new('test collection', nil, 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/stub/manifest.json') + @di.send(:fetch_manifest) + @di.send(:define_doc) + end + it 'should have a collection' do + expect(@di.instance_variable_get('@doc')[:collection]).to eq('test collection') + end + it 'should have a druid' do + expect(@di.instance_variable_get('@doc')[:druid]).to eq('kq131cs7229') + end + it 'should have a manifest url' do + expect(@di.instance_variable_get('@doc')[:iiif_manifest]).to eq('http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/stub/manifest.json') + end + it 'should have a mods url' do + expect(@di.instance_variable_get('@doc')[:mods_url]).to eq('http://purl.stanford.edu/kq131cs7229.mods') + end + it 'should have a mods xml' do + expect(@di.instance_variable_get('@doc')[:modsxml]).to eq(@response2) + end + end + + describe '#index_mods' do + before do + @di = DataIndexer.new('test collection', nil, 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/stub/manifest.json') + @di.send(:fetch_manifest) + @di.send(:define_doc) + # @di.send(:index_mods) #TODO: connection is being refused by solr + end + it 'is a pending test' + # it 'should have received an add' do + # expect(@stub_solr).to receive(:solr).at_least(1).times.and_return(@stub_solr) #TODO: How do I test solr received an add + # end + end + + describe '#index_annotations' do + before do + @di = DataIndexer.new('test collection', nil, 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/stub/manifest.json') + @di.send(:fetch_manifest) + @di.send(:define_doc) + # @di.send(:index_mods) #TODO: connection is being refused by solr + # @ans = @di.send(:index_annotations) #TODO: connection is being refused by solr + end + it 'is a pending test' + # it 'should have received 3 adds' do + # expect(@stub_solr).to receive(:solr).at_least(44).times.and_return(@stub_solr) #TODO: How do I test solr received 44 adds (1 + 19 + 1 + 23) + # end + # it 'should have counted 2 lists do' + # expect(@ans[0]).to eq(2) + # end + # it 'should have counted 44 resources do' + # expect(@ans[1]).to eq(44) + # expect(@ans[2]).to eq(44) + # end + end + + describe '#index' do + before do + @di = DataIndexer.new('test collection', nil, 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/stub/manifest.json') + # @di.index #TODO: connection is being refused by solr + end + it 'is a pending test' + # it 'should have received 3 adds' do + # expect(@stub_solr).to receive(:solr).at_least(44).times.and_return(@stub_solr) #TODO: How do I test solr received 44 adds (1 + 19 + 1 + 23) + # end + # it 'should have counted 2 lists do' + # expect(@ans[0]).to eq(2) + # end + # it 'should have counted 44 resources do' + # expect(@ans[1]).to eq(44) + # expect(@ans[2]).to eq(44) + # end + end + + describe '#index_csv' do + before do + @di = DataIndexer.new('test collection', manifest_csv_file, nil) + # @di.index_csv #TODO: connection is being refused by solr + end + it 'is a pending test' + # it 'should have received 3 adds' do + # expect(@stub_solr).to receive(:solr).at_least(44).times.and_return(@stub_solr) #TODO: How do I test solr received 44 adds (1 + 19 + 1 + 23) + # end + # it 'should have counted 2 lists do' + # expect(@ans[0]).to eq(2) + # end + # it 'should have counted 44 resources do' + # expect(@ans[1]).to eq(44) + # expect(@ans[2]).to eq(44) + # end + end + + describe '#run' do + before do + @d1 = DataIndexer.new('test collection', nil, 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/stub/manifest.json') + # @d1.index #TODO: connection is being refused by solr + @d2 = DataIndexer.new('test collection', manifest_csv_file, nil) + # @d2.index_csv #TODO: connection is being refused by solr + end + it 'is a pending test' + # TODO this is the same as index and index_csv, depending on params. It also commits after indexing + end + +end \ No newline at end of file From 2a88df776aa1ace7d735f3651a70028a48c42376 Mon Sep 17 00:00:00 2001 From: Anusha Ranganathan Date: Sat, 19 Dec 2015 18:58:48 +0000 Subject: [PATCH 04/12] Added indexing fixture objects to rake task --- data/test_manifest_urls.csv | 4 ++++ lib/tasks/colligo.rake | 6 ++++++ 2 files changed, 10 insertions(+) create mode 100644 data/test_manifest_urls.csv diff --git a/data/test_manifest_urls.csv b/data/test_manifest_urls.csv new file mode 100644 index 0000000..8e5da6c --- /dev/null +++ b/data/test_manifest_urls.csv @@ -0,0 +1,4 @@ +http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/manifest.json +http://dms-data.stanford.edu/data/manifests/BnF/jr903ng8662/manifest.json +http://dms-data.stanford.edu/data/manifests/Parker/fh878gz0315/manifest.json +http://dms-data.stanford.edu/data/manifests/Parker/ft757ht3699/manifest.json diff --git a/lib/tasks/colligo.rake b/lib/tasks/colligo.rake index abfb9d7..9be6efc 100644 --- a/lib/tasks/colligo.rake +++ b/lib/tasks/colligo.rake @@ -1,10 +1,12 @@ require 'jettywrapper' +require 'data_indexer' namespace :colligo do desc 'Run Colligo local installation steps' task install: [:environment] do Rake::Task['db:migrate'].invoke Rake::Task['colligo:download_and_unzip_jetty'].invoke Rake::Task['colligo:copy_solr_configs'].invoke + Rake::Task['colligo:fixtures'].invoke end desc 'Download and unzip jetty' task :download_and_unzip_jetty do @@ -21,4 +23,8 @@ namespace :colligo do cp "#{Rails.root}/config/solr_configs/#{file}.xml", "#{Rails.root}/jetty/solr/blacklight-core/conf/" end end + desc 'Index test fixtures' + task :fixtures do + DataIndexer.new('Test collection', 'data/test_manifest_urls.csv').run + end end From ca3cf20d7c75a69321f7a94e5caee55e0a2b3cef Mon Sep 17 00:00:00 2001 From: Anusha Ranganathan Date: Tue, 22 Dec 2015 17:30:51 +0000 Subject: [PATCH 05/12] Allow localhost in webmock and change port for solr test env Conflicts: spec/tasks/data_indexer_spec.rb --- config/blacklight.yml | 2 +- spec/spec_helper.rb | 2 + spec/tasks/data_indexer_spec.rb | 80 ++++++++++++++++++--------------- 3 files changed, 46 insertions(+), 38 deletions(-) diff --git a/config/blacklight.yml b/config/blacklight.yml index 11cbcad..e31c1fe 100644 --- a/config/blacklight.yml +++ b/config/blacklight.yml @@ -15,7 +15,7 @@ development: url: <%= ENV['SOLR_URL'] || "http://127.0.0.1:8984/solr/blacklight-core" %> test: &test adapter: solr - url: <%= "http://127.0.0.1:#{ENV['TEST_JETTY_PORT'] || 8888}/solr/blacklight-core" %> + url: <%= "http://127.0.0.1:#{ENV['TEST_JETTY_PORT'] || 8984}/solr/blacklight-core" %> production: adapter: solr url: <%= ENV['SOLR_URL'] || "http://127.0.0.1:8983/solr/blacklight-core" %> diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 14fc9ae..198d83a 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -27,6 +27,8 @@ # If you are not using ActiveRecord, you can remove this line. ActiveRecord::Migration.maintain_test_schema! +WebMock.disable_net_connect!(:allow => [/127.0.0.1/, /localhost/] ) + RSpec.configure do |config| config.include Capybara::DSL diff --git a/spec/tasks/data_indexer_spec.rb b/spec/tasks/data_indexer_spec.rb index a33a2ce..bfc8b98 100644 --- a/spec/tasks/data_indexer_spec.rb +++ b/spec/tasks/data_indexer_spec.rb @@ -3,11 +3,10 @@ describe 'DataIndexer' do include IiifManifestFixtures - #WebMock.disable_net_connect!(:allow => [/127.0.0.1/, /localhost/] ) - before(:all) do + # let(:stub_solr) { double('solr') } + before do @stub_solr = Blacklight.default_index.connection - # @stub_solr = double('solr') - # expect(@stub_solr).to receive(:solr).at_least(1).times.and_return(@stub_solr) + # expect(Blacklight).to receive(:solr).at_least(1).times.and_return(stub_solr) end before(:each) do @response = File.open("#{::Rails.root}/spec/fixtures/iiif_manifest_records/manifest_001_stub.json").read @@ -123,11 +122,17 @@ @di = DataIndexer.new('test collection', nil, 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/stub/manifest.json') @di.send(:fetch_manifest) @di.send(:define_doc) - # @di.send(:index_mods) #TODO: connection is being refused by solr + # @di.send(:index_mods) end it 'is a pending test' # it 'should have received an add' do - # expect(@stub_solr).to receive(:solr).at_least(1).times.and_return(@stub_solr) #TODO: How do I test solr received an add + # #TODO: How do I test solr received an add + # expect(stub_solr).to receive(:add).at_least(1).times.and_return(true) + # expect(stub_solr).to receive(:add).at_least(1).times.and_return(arg) |do| + # expect(arg).to have_key 'responseHeader' + # expect(arg['responseHeader']).to have_key 'status' + # expect(arg['responseHeader']['status']).to eq 0 + # end # end end @@ -136,12 +141,13 @@ @di = DataIndexer.new('test collection', nil, 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/stub/manifest.json') @di.send(:fetch_manifest) @di.send(:define_doc) - # @di.send(:index_mods) #TODO: connection is being refused by solr - # @ans = @di.send(:index_annotations) #TODO: connection is being refused by solr + # @di.send(:index_mods) + # @ans = @di.send(:index_annotations) end it 'is a pending test' - # it 'should have received 3 adds' do - # expect(@stub_solr).to receive(:solr).at_least(44).times.and_return(@stub_solr) #TODO: How do I test solr received 44 adds (1 + 19 + 1 + 23) + # TODO: How do I test solr received 44 adds (1 + 19 + 1 + 23) + # it 'should have received 44 adds' do + # expect(stub_solr).to receive(:add).at_least(44).times.and_return(true) # end # it 'should have counted 2 lists do' # expect(@ans[0]).to eq(2) @@ -155,48 +161,48 @@ describe '#index' do before do @di = DataIndexer.new('test collection', nil, 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/stub/manifest.json') - # @di.index #TODO: connection is being refused by solr + # @di.index end it 'is a pending test' - # it 'should have received 3 adds' do - # expect(@stub_solr).to receive(:solr).at_least(44).times.and_return(@stub_solr) #TODO: How do I test solr received 44 adds (1 + 19 + 1 + 23) - # end - # it 'should have counted 2 lists do' - # expect(@ans[0]).to eq(2) - # end - # it 'should have counted 44 resources do' - # expect(@ans[1]).to eq(44) - # expect(@ans[2]).to eq(44) + # TODO: How do I test solr received 45 adds (1 + 1 + 19 + 1 + 23) + # it 'should have received 45 adds' do + # expect(stub_solr).to receive(:add).at_least(45).times.and_return(true) # end end describe '#index_csv' do before do @di = DataIndexer.new('test collection', manifest_csv_file, nil) - # @di.index_csv #TODO: connection is being refused by solr + # @di.index_csv end it 'is a pending test' - # it 'should have received 3 adds' do - # expect(@stub_solr).to receive(:solr).at_least(44).times.and_return(@stub_solr) #TODO: How do I test solr received 44 adds (1 + 19 + 1 + 23) - # end - # it 'should have counted 2 lists do' - # expect(@ans[0]).to eq(2) - # end - # it 'should have counted 44 resources do' - # expect(@ans[1]).to eq(44) - # expect(@ans[2]).to eq(44) + # TODO: How do I test solr received lots of adds + # it 'should have received adds' do + # expect(stub_solr).to receive(:add).at_least(50).times.and_return(true) # end end - describe '#run' do + describe '#run index' do before do - @d1 = DataIndexer.new('test collection', nil, 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/stub/manifest.json') - # @d1.index #TODO: connection is being refused by solr - @d2 = DataIndexer.new('test collection', manifest_csv_file, nil) - # @d2.index_csv #TODO: connection is being refused by solr + @di = DataIndexer.new('test collection', nil, 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/stub/manifest.json') + @di.run end it 'is a pending test' - # TODO this is the same as index and index_csv, depending on params. It also commits after indexing + # it 'should have received adds' do + # expect(stub_solr).to receive(:add).at_least(45).times.and_return(true) + # expect(stub_solr).to receive(:commit).once_and_return(true) + # end end -end \ No newline at end of file + describe '#run index_csv' do + before do + @di = DataIndexer.new('test collection', manifest_csv_file, nil) + @di.run + end + it 'is a pending test' + # it 'should have received adds' do + # expect(stub_solr).to receive(:add).at_least(50).times.and_return(true) + # expect(stub_solr).to receive(:commit).once_and_return(true) + # end + end +end From 2fa90e2c14eb89ece6e31cb68c8824c73c644fdc Mon Sep 17 00:00:00 2001 From: Anusha Ranganathan Date: Mon, 4 Jan 2016 21:07:42 +0000 Subject: [PATCH 06/12] Travis rake task needs access to github --- spec/spec_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 198d83a..d1a5368 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -27,7 +27,7 @@ # If you are not using ActiveRecord, you can remove this line. ActiveRecord::Migration.maintain_test_schema! -WebMock.disable_net_connect!(:allow => [/127.0.0.1/, /localhost/] ) +WebMock.disable_net_connect!(:allow => [/127.0.0.1/, /localhost/, /github.com/] ) RSpec.configure do |config| config.include Capybara::DSL From 38cd69193d8925e3dfa757c53d09b602fa84c2f4 Mon Sep 17 00:00:00 2001 From: Anusha Ranganathan Date: Tue, 5 Jan 2016 20:32:24 +0000 Subject: [PATCH 07/12] Enable webmock only in rsepc for test env --- config/application.rb | 2 ++ spec/spec_helper.rb | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/config/application.rb b/config/application.rb index a330935..4e9b788 100644 --- a/config/application.rb +++ b/config/application.rb @@ -22,5 +22,7 @@ class Application < Rails::Application # Do not swallow errors in after_commit/after_rollback callbacks. config.active_record.raise_in_transactional_callbacks = true + + WebMock.disable! if Rails.env.test? end end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index d1a5368..9cf5c5b 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -27,7 +27,8 @@ # If you are not using ActiveRecord, you can remove this line. ActiveRecord::Migration.maintain_test_schema! -WebMock.disable_net_connect!(:allow => [/127.0.0.1/, /localhost/, /github.com/] ) +WebMock.enable! +WebMock.disable_net_connect!(:allow => [/127.0.0.1/, /localhost/, /github/] ) RSpec.configure do |config| config.include Capybara::DSL From 992d708d1b2d3183a3102e0fcd8bd514072d999b Mon Sep 17 00:00:00 2001 From: Anusha Ranganathan Date: Wed, 6 Jan 2016 14:01:14 +0000 Subject: [PATCH 08/12] Fixed pending tests - test before execute for solr stub. Thanks @jkeck! --- spec/tasks/data_indexer_spec.rb | 94 +++++++++++++++------------------ 1 file changed, 44 insertions(+), 50 deletions(-) diff --git a/spec/tasks/data_indexer_spec.rb b/spec/tasks/data_indexer_spec.rb index bfc8b98..4ee80d8 100644 --- a/spec/tasks/data_indexer_spec.rb +++ b/spec/tasks/data_indexer_spec.rb @@ -77,7 +77,6 @@ end it 'should have a manifest' do expect(@di.instance_variable_get('@manifest').manifest).to be_a(Hash) - # expect(@di.instance_variable_get('@manifest').manifest).to eq(JSON.parse(@response)) end it 'should have a title' do expect(@di.instance_variable_get('@manifest').title).to eq('Manuscript fragment of the Gospels and Canonical Epistles, glossed') @@ -119,90 +118,85 @@ describe '#index_mods' do before do + # Manifest file has link to 1 mods record @di = DataIndexer.new('test collection', nil, 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/stub/manifest.json') + end + it 'should have received an add' do + expect(@stub_solr).to receive(:add).exactly(1).times.and_return(true) @di.send(:fetch_manifest) @di.send(:define_doc) - # @di.send(:index_mods) - end - it 'is a pending test' - # it 'should have received an add' do - # #TODO: How do I test solr received an add - # expect(stub_solr).to receive(:add).at_least(1).times.and_return(true) - # expect(stub_solr).to receive(:add).at_least(1).times.and_return(arg) |do| - # expect(arg).to have_key 'responseHeader' - # expect(arg['responseHeader']).to have_key 'status' - # expect(arg['responseHeader']['status']).to eq 0 - # end - # end + @di.send(:index_mods) + end end describe '#index_annotations' do before do + # Manifest file has 2 annotation lists. First list has 19 annotations. Second has 23 annotations + # Total of 42 records indexed in solr @di = DataIndexer.new('test collection', nil, 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/stub/manifest.json') + end + it 'should have received 42 adds' do + expect(@stub_solr).to receive(:add).exactly(42).times.and_return(true) @di.send(:fetch_manifest) @di.send(:define_doc) - # @di.send(:index_mods) - # @ans = @di.send(:index_annotations) - end - it 'is a pending test' - # TODO: How do I test solr received 44 adds (1 + 19 + 1 + 23) - # it 'should have received 44 adds' do - # expect(stub_solr).to receive(:add).at_least(44).times.and_return(true) - # end - # it 'should have counted 2 lists do' - # expect(@ans[0]).to eq(2) - # end - # it 'should have counted 44 resources do' - # expect(@ans[1]).to eq(44) - # expect(@ans[2]).to eq(44) - # end + @ans = @di.send(:index_annotations) + expect(@ans[0]).to eq(2) + expect(@ans[1]).to eq(42) + expect(@ans[2]).to eq(42) + end end describe '#index' do before do + # Manifest file has 1 mods and 2 annotation lists. First list has 19 annotations. Second has 23 annotations + # Total of 43 records indexed in solr @di = DataIndexer.new('test collection', nil, 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/stub/manifest.json') - # @di.index end - it 'is a pending test' - # TODO: How do I test solr received 45 adds (1 + 1 + 19 + 1 + 23) - # it 'should have received 45 adds' do - # expect(stub_solr).to receive(:add).at_least(45).times.and_return(true) - # end + it 'should have received 43 adds' do + expect(@stub_solr).to receive(:add).exactly(43).times.and_return(true) + @di.index + end end describe '#index_csv' do before do + # csv file has two manifest urls + # Manifest 1 - has 1 mods and 2 annotation lists. First list has 19 annotations. Second has 23 annotations + # Manifest 2 - has 1 mods and 2 annotation lists. First list has 20 annotations. Second has 22 annotations + # Total of 86 records indexed in solr @di = DataIndexer.new('test collection', manifest_csv_file, nil) - # @di.index_csv end - it 'is a pending test' - # TODO: How do I test solr received lots of adds - # it 'should have received adds' do - # expect(stub_solr).to receive(:add).at_least(50).times.and_return(true) - # end + it 'should have received 86 adds (1 + 19 + 23 + 1 + 20 + 22)' do + expect(@stub_solr).to receive(:add).exactly(86).times.and_return(true) + @di.index_csv + end end describe '#run index' do before do + # Manifest file has 1 mods and 2 annotation lists. First list has 19 annotations. Second has 23 annotations + # Total of 43 records indexed in solr @di = DataIndexer.new('test collection', nil, 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/stub/manifest.json') + end + it 'should have received adds' do + expect(@stub_solr).to receive(:add).exactly(43).times.and_return(true) + expect(@stub_solr).to receive(:commit).once.and_return(true) @di.run end - it 'is a pending test' - # it 'should have received adds' do - # expect(stub_solr).to receive(:add).at_least(45).times.and_return(true) - # expect(stub_solr).to receive(:commit).once_and_return(true) - # end end describe '#run index_csv' do before do + # csv file has two manifest urls + # Manifest 1 - has 1 mods and 2 annotation lists. First list has 19 annotations. Second has 23 annotations + # Manifest 2 - has 1 mods and 2 annotation lists. First list has 20 annotations. Second has 22 annotations + # Total of 86 records indexed in solr @di = DataIndexer.new('test collection', manifest_csv_file, nil) + end + it 'should have received 86 adds' do + expect(@stub_solr).to receive(:add).exactly(86).times.and_return(true) + expect(@stub_solr).to receive(:commit).once.and_return(true) @di.run end - it 'is a pending test' - # it 'should have received adds' do - # expect(stub_solr).to receive(:add).at_least(50).times.and_return(true) - # expect(stub_solr).to receive(:commit).once_and_return(true) - # end end end From e2dccfa99ff9c81b90532b2c95c5602c3ce7a92f Mon Sep 17 00:00:00 2001 From: Anusha Ranganathan Date: Wed, 6 Jan 2016 16:49:24 +0000 Subject: [PATCH 09/12] Removed github from spec helper - undoing prev commit --- spec/spec_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 9cf5c5b..b1e05e5 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -28,7 +28,7 @@ ActiveRecord::Migration.maintain_test_schema! WebMock.enable! -WebMock.disable_net_connect!(:allow => [/127.0.0.1/, /localhost/, /github/] ) +WebMock.disable_net_connect!(:allow => [/127.0.0.1/, /localhost/] ) RSpec.configure do |config| config.include Capybara::DSL From 0503afc92ddbbb22130a40ac57decd5d93e76090 Mon Sep 17 00:00:00 2001 From: Anusha Ranganathan Date: Wed, 6 Jan 2016 20:02:52 +0000 Subject: [PATCH 10/12] Retain test port at 8888 --- config/blacklight.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/blacklight.yml b/config/blacklight.yml index e31c1fe..11cbcad 100644 --- a/config/blacklight.yml +++ b/config/blacklight.yml @@ -15,7 +15,7 @@ development: url: <%= ENV['SOLR_URL'] || "http://127.0.0.1:8984/solr/blacklight-core" %> test: &test adapter: solr - url: <%= "http://127.0.0.1:#{ENV['TEST_JETTY_PORT'] || 8984}/solr/blacklight-core" %> + url: <%= "http://127.0.0.1:#{ENV['TEST_JETTY_PORT'] || 8888}/solr/blacklight-core" %> production: adapter: solr url: <%= ENV['SOLR_URL'] || "http://127.0.0.1:8983/solr/blacklight-core" %> From 81f45d74091cf101c9aa6a31b25f1faf8f32443f Mon Sep 17 00:00:00 2001 From: Anusha Ranganathan Date: Wed, 6 Jan 2016 20:03:44 +0000 Subject: [PATCH 11/12] Changed conditional statements to read better --- lib/data_indexer.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/data_indexer.rb b/lib/data_indexer.rb index 7a4347a..644801e 100644 --- a/lib/data_indexer.rb +++ b/lib/data_indexer.rb @@ -26,7 +26,7 @@ def initialize(collection = nil, csv_file = nil, manifest_url = nil) # from a list of manifest urls or each url # depending on the options def run - if !@csv_file.blank? && File.exist?(@csv_file) + if @csv_file.present? && File.exist?(@csv_file) index_csv commit elsif @url @@ -38,7 +38,7 @@ def run # Index mods and annotations data from a list of manifest urls # csv file to contain one url per line and no header def index_csv - return if @csv_file.blank? || !File.exist?(@csv_file) + return unless @csv_file.present? && File.exist?(@csv_file) CSV.foreach(@csv_file) do |row| @url = row[0] index @@ -47,6 +47,7 @@ def index_csv # Index MODS and annotation lists fetched from the IIIF manifest url def index + return unless @url.present? fetch_manifest if define_doc index_mods From 51b9637eb0961597564903a2582122f382d29ca8 Mon Sep 17 00:00:00 2001 From: Anusha Ranganathan Date: Wed, 6 Jan 2016 20:04:06 +0000 Subject: [PATCH 12/12] Added spec tests to test for nil --- spec/tasks/data_indexer_spec.rb | 62 ++++++++++++++++++++++++++------- 1 file changed, 50 insertions(+), 12 deletions(-) diff --git a/spec/tasks/data_indexer_spec.rb b/spec/tasks/data_indexer_spec.rb index 4ee80d8..250799f 100644 --- a/spec/tasks/data_indexer_spec.rb +++ b/spec/tasks/data_indexer_spec.rb @@ -152,6 +152,10 @@ # Total of 43 records indexed in solr @di = DataIndexer.new('test collection', nil, 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/stub/manifest.json') end + it 'should return if no url' do + expect(@stub_solr).to receive(:add).exactly(0).times + ans = DataIndexer.new.index + end it 'should have received 43 adds' do expect(@stub_solr).to receive(:add).exactly(43).times.and_return(true) @di.index @@ -166,37 +170,71 @@ # Total of 86 records indexed in solr @di = DataIndexer.new('test collection', manifest_csv_file, nil) end + it 'should return if no csv file' do + expect(@stub_solr).to receive(:add).exactly(0).times + ans = DataIndexer.new.index_csv + end + it 'should return if csv file does not exist' do + expect(@stub_solr).to receive(:add).exactly(0).times + ans = DataIndexer.new('test', 'qe23r125143t14r.csv').index_csv + end it 'should have received 86 adds (1 + 19 + 23 + 1 + 20 + 22)' do expect(@stub_solr).to receive(:add).exactly(86).times.and_return(true) @di.index_csv end end - describe '#run index' do - before do + describe '#run' do + it 'should return if no csv file or url' do + expect(@stub_solr).to receive(:add).exactly(0).times + expect(@stub_solr).to receive(:commit).exactly(0).times + ans = DataIndexer.new.run + end + it 'should return if csv file does not exist and no url' do + expect(@stub_solr).to receive(:add).exactly(0).times + expect(@stub_solr).to receive(:commit).exactly(0).times + ans = DataIndexer.new('test', 'qe23r125143t14r.csv').run + end + it 'should have received 86 adds from csv file #1' do + # csv file has two manifest urls + # Manifest 1 - has 1 mods and 2 annotation lists. First list has 19 annotations. Second has 23 annotations + # Manifest 2 - has 1 mods and 2 annotation lists. First list has 20 annotations. Second has 22 annotations + # Total of 86 records indexed in solr # Manifest file has 1 mods and 2 annotation lists. First list has 19 annotations. Second has 23 annotations # Total of 43 records indexed in solr - @di = DataIndexer.new('test collection', nil, 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/stub/manifest.json') - end - it 'should have received adds' do - expect(@stub_solr).to receive(:add).exactly(43).times.and_return(true) + # If both are vaild, it will run the csv file + @di = DataIndexer.new('test collection', manifest_csv_file, 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/stub/manifest.json') + expect(@stub_solr).to receive(:add).exactly(86).times.and_return(true) expect(@stub_solr).to receive(:commit).once.and_return(true) @di.run end - end - - describe '#run index_csv' do - before do + it 'should have received 86 adds from csv file #2' do # csv file has two manifest urls # Manifest 1 - has 1 mods and 2 annotation lists. First list has 19 annotations. Second has 23 annotations # Manifest 2 - has 1 mods and 2 annotation lists. First list has 20 annotations. Second has 22 annotations # Total of 86 records indexed in solr @di = DataIndexer.new('test collection', manifest_csv_file, nil) - end - it 'should have received 86 adds' do expect(@stub_solr).to receive(:add).exactly(86).times.and_return(true) expect(@stub_solr).to receive(:commit).once.and_return(true) @di.run end + it 'should have received 43 adds from index url #1' do + # Manifest file has 1 mods and 2 annotation lists. First list has 19 annotations. Second has 23 annotations + # Total of 43 records indexed in solr + @di = DataIndexer.new('test collection', nil, 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/stub/manifest.json') + expect(@stub_solr).to receive(:add).exactly(43).times.and_return(true) + expect(@stub_solr).to receive(:commit).once.and_return(true) + @di.run + end + it 'should have received 43 adds from index url #2' do + # Manifest file has 1 mods and 2 annotation lists. First list has 19 annotations. Second has 23 annotations + # Total of 43 records indexed in solr + @di = DataIndexer.new('test collection', 'qe23r125143t14r.csv', 'http://dms-data.stanford.edu/data/manifests/Stanford/kq131cs7229/stub/manifest.json') + expect(@stub_solr).to receive(:add).exactly(43).times.and_return(true) + expect(@stub_solr).to receive(:commit).once.and_return(true) + @di.run + end + end + end