From 044014b8cf3ca9de12009b4958bd95377906460a Mon Sep 17 00:00:00 2001 From: Stefan Karner Date: Fri, 3 May 2019 08:28:02 +0200 Subject: [PATCH] Add html versions for block 2 --- html-versions/2 - Metadata and Catalogue.html | 15197 +++++++++++++++ .../2 - Metadata and Catalogue.slides.html | 15385 ++++++++++++++++ html-versions/2.1 - SRU.html | 13216 +++++++++++++ html-versions/2.2 - OAI-PMH.html | 13451 ++++++++++++++ html-versions/2.3 - SPARQL.html | 13283 +++++++++++++ 5 files changed, 70532 insertions(+) create mode 100644 html-versions/2 - Metadata and Catalogue.html create mode 100644 html-versions/2 - Metadata and Catalogue.slides.html create mode 100644 html-versions/2.1 - SRU.html create mode 100644 html-versions/2.2 - OAI-PMH.html create mode 100644 html-versions/2.3 - SPARQL.html diff --git a/html-versions/2 - Metadata and Catalogue.html b/html-versions/2 - Metadata and Catalogue.html new file mode 100644 index 0000000..642730a --- /dev/null +++ b/html-versions/2 - Metadata and Catalogue.html @@ -0,0 +1,15197 @@ + + + + +2 - Metadata and Catalogue + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+
+

In this block:

    +
  • Overview metadata formats
  • +
  • Overview container formats
  • +
  • Overview protocols
  • +
  • Overview SPARQL
  • +
+ +
+
+
+
+
+
+
    +
  • Example: SRU (2.1)
  • +
  • Example: data harvesting OAI-PMH (2.2)
  • +
  • Example: SPARQL (2.3)
  • +
+ +
+
+
+
+
+
+

Overview metadata formats

+
+
+
+
+
+
+
    +
  • Dublin Core
      +
    • set of vocabulary terms to describe digital resources
    • +
    • 15 classic metadata terms, known as the Dublin Core Metadata Element Set (DCMES)
    • +
    • DCMI Metadata Terms: terms of the DCMES + qualified terms
    • +
    • Dublin Core Metadata Initiative
    • +
    +
  • +
+ +
+
+
+
+
+
+
    +
  • MARC
      +
    • MARC (MAchine-Readable Cataloging) standards
        +
      • developed in the 1960s to create records that could be read by computers and shared among libraries
      • +
      +
    • +
    • MARC 21, MARC record format for the 21st century
    • +
    • Full MARC 21 Record Examples
    • +
    +
  • +
+ +
+
+
+
+
+
+
    +
  • Dublin Core Metadata Element Set (DCMES) 1.1

    +
      +
    1. Title: The name of the object
    2. +
    3. Creator: An entity primarily responsible for making the resource
    4. +
    5. Subject: The topic addressed by the work
    6. +
    7. Description: An account of the resource
    8. +
    9. Publisher: The agent or agency responsible for making the object available
    10. +
    11. Contributor: An entity responsible for making contributions to the resource
    12. +
    13. Date: The date of publication
    14. +
    15. Type: The nature or genre of the resource
    16. +
    17. Format: The file format, physical medium, or dimensions of the resource
    18. +
    19. Identifier: String or number used to uniquely identify the object
    20. +
    +
  • +
+ +
+
+
+
+
+
+
    +
  • Dublin Core Metadata Element Set (DCMES) 1.1

    +
      +
    1. Source: Objects, either print or electronic, from which this object is derived, if applicable
    2. +
    3. Language: Language of the intellectual content
    4. +
    5. Relation: Relationship to other objects
    6. +
    7. Coverage: The spatial locations and temporal durations characteristic of the object
    8. +
    9. Rights: Information about rights held in and over the resource
    10. +
    +
  • +
+ +
+
+
+
+
+
+

Overview container formats

+
+
+
+
+
+
+ + +
+
+
+
+
+
+ + +
+
+
+
+
+
+
    +
  • JSON
      +
    • a string = { "name":"John" }
    • +
    • a number = { "age":30 }
    • +
    • an object (JSON object) = {"employee":{ "name":"John", "age":30, "city":"New York" }}
    • +
    • an array = {"employees":[ "John", "Anna", "Peter" ]}
    • +
    • a boolean = { "sale":true }
    • +
    • null = { "middlename":null }
    • +
    +
  • +
+ +
+
+
+
+
+
+
    +
  • JSON-LD
      +
    • JSON for Linked Data
    • +
    • keywords
        +
      • @context to provide additional mappings from JSON to an RDF model (map terms to IRIs)
      • +
      • @id to uniquely identify things
      • +
      • @type to set the data type of a node or typed value
      • +
      • @container to set the default container type for a term
      • +
      • "@container": "@set" defines a container as an unordered set
      • +
      +
    • +
    +
  • +
+ +
+
+
+
+
+
+
{
+  "@context": {
+    "name": "http://xmlns.com/foaf/0.1/name",
+    "homepage": {
+      "@id": "http://xmlns.com/foaf/0.1/workplaceHomepage",
+      "@type": "@id"
+    },
+    "Person": "http://xmlns.com/foaf/0.1/Person"
+  },
+  "@id": "https://me.example.com",
+  "@type": "Person",
+  "name": "John Smith",
+  "homepage": "https://www.example.com/"
+}
+
+ +
+
+
+
+
+
+
    +
  • RDF (Resource Description Framework) W3C standard for modeling information for the semantic web
  • +
  • RDF Triples
      +
    • describe everything as subject, predicate and object expression
        +
      • subject denotes the resource
      • +
      • predicate, a term used to describe the subject
      • +
      • object, the thing that the verb is acting upon, can be another resource, or just a literal value
      • +
      +
    • +
    +
  • +
+ +
+
+
+ +
+
+
+
    +
  • JSON-LD Processing Algorithms
      +
    • JSON-LD Expaneded
        +
      • replaces terms with the URIs they expand to
      • +
      • necessary for further transformations
      • +
      • removes context
      • +
      +
    • +
    • JSON-LD Compacted
        +
      • removes context
      • +
      • makes it easier to read
      • +
      +
    • +
    • JSON-LD Flattened
        +
      • all properties of a node are collected in a single JSON object
      • +
      • a labeled directed graph ()
      • +
      +
    • +
    • JSON-LD Framing +
    • +
    +
  • +
+ +
+
+
+
+
+
+ +
{
+...
+    "publisher": "Arn. Giull. de Brocario",
+    "place_of_publication": "Compluti",
+    "language": "http://id.loc.gov/vocabulary/iso639-2/mul",
+    "@id": "https://open-na.hosted.exlibrisgroup.com/alma/43ACC_ONB/bibs/990028618530603338",
+    "title": "Biblia polyglotta",
+    "@context": "https://open-na.hosted.exlibrisgroup.com/alma/contexts/bib"
+}
+
+ + +
+
+
+
+
+
In [1]:
+
+
+
import requests
+resp=requests.get("https://open-na.hosted.exlibrisgroup.com/alma/43ACC_NETWORK/bibs/990106901740203331")
+resp.json()
+
+ +
+
+
+ +
+
+ + +
+ +
Out[1]:
+ + + + +
+
{'date': '9999',
+ 'note': 'Aus: (Sammelband von 63 Hochzeitsgedichten).',
+ 'identifier': [{'label': '(DE-599)OBVAC10480601'},
+  {'label': '(Aleph)010690174ACC01'},
+  {'label': '(AT-OBV)AC10480601'},
+  {'label': 'AC10480601'}],
+ '@type': 'Book',
+ 'place_of_publication': 's.l.',
+ 'language': 'http://id.loc.gov/vocabulary/iso639-2/ger',
+ '@id': 'https://open-na.hosted.exlibrisgroup.com/alma/43ACC_NETWORK/bibs/990106901740203331',
+ 'title': 'Bey dem hochadelichen Helmrich- und Bassronischen Beylager, welches ... zu sonderbahren Ehren beyder Vermählten ...',
+ '@context': 'https://open-na.hosted.exlibrisgroup.com/alma/contexts/bib'}
+
+ +
+ +
+
+ +
+
+
+
+

Overview protocols

+
+
+
+
+
+
+ + +
+
+
+ +
+
+
In [2]:
+
+
+
import requests
+from lxml import etree
+cont=requests.get("https://obv-at-oenb.alma.exlibrisgroup.com/view/sru/43ACC_ONB?version=1.2&query=alma.barcode=%2BZ199052304&startRecord=0&maximumRecords=1&operation=searchRetrieve&recordSchema=marcxml").content
+e = etree.XML(cont)
+print(etree.tostring(e, encoding='unicode', pretty_print=True))
+
+ +
+
+
+ +
+
+ + +
+ +
+ + +
+
<searchRetrieveResponse xmlns="http://www.loc.gov/zing/srw/">
+  <version>1.2</version>
+  <numberOfRecords>1</numberOfRecords>
+  <records>
+    <record>
+      <recordSchema>marcxml</recordSchema>
+      <recordPacking>xml</recordPacking>
+      <recordData>
+        <record xmlns="http://www.loc.gov/MARC21/slim">
+          <leader>00000nam a2200000 c 4500</leader>
+          <controlfield tag="001">990030217420603338</controlfield>
+          <controlfield tag="005">20180123084300.0</controlfield>
+          <controlfield tag="007">cr#|||||||||||</controlfield>
+          <controlfield tag="007">tu</controlfield>
+          <controlfield tag="008">000101|1814####xx############|||#|#ger#u</controlfield>
+          <controlfield tag="009">AC09865194</controlfield>
+          <datafield tag="035" ind1=" " ind2=" ">
+            <subfield code="a">AC09865194</subfield>
+          </datafield>
+          <datafield tag="035" ind1=" " ind2=" ">
+            <subfield code="a">(Aleph)009871525ACC01</subfield>
+          </datafield>
+          <datafield tag="035" ind1=" " ind2=" ">
+            <subfield code="a">(DE-599)OBVAC09865194</subfield>
+          </datafield>
+          <datafield tag="035" ind1=" " ind2=" ">
+            <subfield code="a">(AT-OBV)AC09865194</subfield>
+          </datafield>
+          <datafield tag="035" ind1=" " ind2=" ">
+            <subfield code="a">(EXLNZ-43ACC_NETWORK)990098715250203331</subfield>
+          </datafield>
+          <datafield tag="040" ind1=" " ind2=" ">
+            <subfield code="a">ONB</subfield>
+            <subfield code="b">ger</subfield>
+            <subfield code="c">ONB-AK-RETRO</subfield>
+            <subfield code="d">AT-OeNB</subfield>
+            <subfield code="e">pi</subfield>
+          </datafield>
+          <datafield tag="041" ind1=" " ind2=" ">
+            <subfield code="a">ger</subfield>
+          </datafield>
+          <datafield tag="044" ind1=" " ind2=" ">
+            <subfield code="c">XA-DXDE</subfield>
+          </datafield>
+          <datafield tag="245" ind1="0" ind2="0">
+            <subfield code="a">&lt;&lt;Die&gt;&gt; Flucht über den Rhein odar Das unverhoffte Wiedersehen</subfield>
+            <subfield code="b">Ein erlustirend historisch-rührendes Familiengemälde mit Erscheinungen und vollstimmigen Chören von Baschkiren und Cosaken, und allen Batterien der Deutschen</subfield>
+          </datafield>
+          <datafield tag="264" ind1=" " ind2="1">
+            <subfield code="a">[Meißen]</subfield>
+            <subfield code="b">[Gödsche]</subfield>
+            <subfield code="c">1814</subfield>
+          </datafield>
+          <datafield tag="300" ind1=" " ind2=" ">
+            <subfield code="a">32 S.</subfield>
+          </datafield>
+          <datafield tag="689" ind1="0" ind2="0">
+            <subfield code="a">Deutschland</subfield>
+            <subfield code="D">g</subfield>
+            <subfield code="0">(DE-588)4011882-4</subfield>
+          </datafield>
+          <datafield tag="689" ind1="0" ind2="1">
+            <subfield code="a">Krieg</subfield>
+            <subfield code="D">s</subfield>
+            <subfield code="0">(DE-588)4033114-3</subfield>
+          </datafield>
+          <datafield tag="689" ind1="0" ind2="3">
+            <subfield code="a">Belletristische Darstellung</subfield>
+            <subfield code="A">f</subfield>
+          </datafield>
+          <datafield tag="689" ind1="0" ind2=" ">
+            <subfield code="5">AT-OBV</subfield>
+            <subfield code="5">ONB-AK</subfield>
+          </datafield>
+          <datafield tag="689" ind1="1" ind2="0">
+            <subfield code="a">Drama</subfield>
+            <subfield code="D">s</subfield>
+            <subfield code="0">(DE-588)4012899-4</subfield>
+          </datafield>
+          <datafield tag="689" ind1="1" ind2="1">
+            <subfield code="a">Deutsch</subfield>
+            <subfield code="D">s</subfield>
+            <subfield code="0">(DE-588)4113292-0</subfield>
+          </datafield>
+          <datafield tag="689" ind1="1" ind2=" ">
+            <subfield code="5">AT-OBV</subfield>
+            <subfield code="5">ONB-AK</subfield>
+          </datafield>
+          <datafield tag="710" ind1="2" ind2=" ">
+            <subfield code="a">Goedsche, Friedrich Wilhelm</subfield>
+            <subfield code="4">pbl</subfield>
+          </datafield>
+          <datafield tag="856" ind1="4" ind2=" ">
+            <subfield code="u">http://data.onb.ac.at/imgk/AZ00308934SZ00220134SZ00628562</subfield>
+            <subfield code="z">Zettel</subfield>
+            <subfield code="o">Katalogkarte</subfield>
+          </datafield>
+          <datafield tag="856" ind1="4" ind2="0">
+            <subfield code="m">V:AT-OBV;B:AT-OeNB</subfield>
+            <subfield code="q">application/html</subfield>
+            <subfield code="u">http://data.onb.ac.at/ABO/%2BZ182067107</subfield>
+            <subfield code="x">ONB-ABO</subfield>
+            <subfield code="3">Volltext</subfield>
+            <subfield code="o">OBV-ONB-ABO</subfield>
+          </datafield>
+          <datafield tag="856" ind1="4" ind2="0">
+            <subfield code="m">V:AT-OBV;B:AT-OeNB</subfield>
+            <subfield code="q">application/html</subfield>
+            <subfield code="u">http://data.onb.ac.at/ABO/%2BZ199052304</subfield>
+            <subfield code="x">ONB-ABO</subfield>
+            <subfield code="3">Volltext</subfield>
+            <subfield code="o">OBV-ONB-ABO</subfield>
+          </datafield>
+          <datafield tag="974" ind1="0" ind2="s">
+            <subfield code="V">029</subfield>
+            <subfield code="a">LZ01187985</subfield>
+          </datafield>
+          <datafield tag="974" ind1="0" ind2="s">
+            <subfield code="F">030</subfield>
+            <subfield code="A">u|1uf||||||37</subfield>
+          </datafield>
+          <datafield tag="974" ind1="0" ind2="s">
+            <subfield code="F">050</subfield>
+            <subfield code="A">a|a|||||g|||||</subfield>
+          </datafield>
+          <datafield tag="974" ind1="0" ind2="s">
+            <subfield code="F">051</subfield>
+            <subfield code="A">m|||||||</subfield>
+          </datafield>
+          <datafield tag="980" ind1="0" ind2=" ">
+            <subfield code="a">0</subfield>
+            <subfield code="9">LOCAL</subfield>
+          </datafield>
+          <datafield tag="980" ind1="0" ind2=" ">
+            <subfield code="a">ONB-AK-RETRO</subfield>
+            <subfield code="9">LOCAL</subfield>
+          </datafield>
+          <datafield tag="982" ind1=" " ind2=" ">
+            <subfield code="f">Drama</subfield>
+            <subfield code="9">LOCAL</subfield>
+          </datafield>
+          <datafield tag="982" ind1=" " ind2=" ">
+            <subfield code="f">Dramen / deutsche / 19. Jh.</subfield>
+            <subfield code="9">LOCAL</subfield>
+          </datafield>
+          <datafield tag="AVA" ind1=" " ind2=" ">
+            <subfield code="0">990030217420603338</subfield>
+            <subfield code="8">22288570940003338</subfield>
+            <subfield code="a">43ACC_ONB</subfield>
+            <subfield code="b">ZALT</subfield>
+            <subfield code="c">State Hall at Josefsplatz</subfield>
+            <subfield code="d">80.J.58</subfield>
+            <subfield code="e">available</subfield>
+            <subfield code="f">1</subfield>
+            <subfield code="g">0</subfield>
+            <subfield code="i">ONB</subfield>
+            <subfield code="j">PRUNK</subfield>
+            <subfield code="p">1</subfield>
+            <subfield code="q">Department of Manuscripts and Rare Books (ALT)</subfield>
+          </datafield>
+          <datafield tag="AVA" ind1=" " ind2=" ">
+            <subfield code="0">990030217420603338</subfield>
+            <subfield code="8">22288570920003338</subfield>
+            <subfield code="a">43ACC_ONB</subfield>
+            <subfield code="b">ZFID</subfield>
+            <subfield code="c">Bildarchiv und Grafiksammlung</subfield>
+            <subfield code="d">288765-B</subfield>
+            <subfield code="e">available</subfield>
+            <subfield code="f">1</subfield>
+            <subfield code="g">0</subfield>
+            <subfield code="i">ONB</subfield>
+            <subfield code="j">MAG</subfield>
+            <subfield code="p">2</subfield>
+            <subfield code="q">Picture Archives and Graphics Department (FID)</subfield>
+          </datafield>
+        </record>
+      </recordData>
+      <recordIdentifier>990030217420603338</recordIdentifier>
+      <recordPosition>0</recordPosition>
+    </record>
+  </records>
+  <extraResponseData xmlns:xb="http://www.exlibris.com/repository/search/xmlbeans/">
+    <xb:exact>true</xb:exact>
+    <xb:responseDate>2019-05-02T16:19:32+0200</xb:responseDate>
+  </extraResponseData>
+</searchRetrieveResponse>
+
+
+
+
+ +
+
+ +
+
+
+
+
    +
  • OAI-PMH
      +
    • OAI-PMH (Open Archives Initiative Protocol for Metadata Harvesting) is used for metadata harvesting
    • +
    • 6 verbs
        +
      • GetRecord – Used to retrieve an individual metadata record.
      • +
      • Identify – Used to retrieve repository information (ex. name, version).
      • +
      • ListIdentifiers – Used to retrieve only headers.
      • +
      • ListMetadataFormats – Used to retrieve the available metadata formats.
      • +
      • ListRecords – Used to retrieve actual item metadata records.
      • +
      • ListSets – Used to retrieve the set structure of a repository
      • +
      +
    • +
    +
  • +
+ +
+
+
+
+
+
In [3]:
+
+
+
from sickle import Sickle
+sickle = Sickle('https://obv-at-oenb.alma.exlibrisgroup.com/view/oai/43ACC_ONB/request')
+oai_sets = sickle.ListSets()
+for oai_set in oai_sets:
+    print('setSpec value for selective harvesting: ' + oai_set.setSpec)
+    print('Name of the set (setName): ' + oai_set.setName + '\n')
+
+ +
+
+
+ +
+
+ + +
+ +
+ + +
+
setSpec value for selective harvesting: PAPYRUSDC
+Name of the set (setName): Papyri records in DC simple
+
+setSpec value for selective harvesting: FULLMARC
+Name of the set (setName): Complete set of ONB records in MARC
+
+setSpec value for selective harvesting: HANNAMARC
+Name of the set (setName): HANNA records in MARC
+
+setSpec value for selective harvesting: ESPERANTOMARC
+Name of the set (setName): Esperanto records in MARC
+
+setSpec value for selective harvesting: ESPERANTODC
+Name of the set (setName): Esperanto Records in DC simple
+
+setSpec value for selective harvesting: PAPYRUSMARC
+Name of the set (setName): Papyri records in MARC
+
+setSpec value for selective harvesting: HANNADC
+Name of the set (setName): HANNA records in DC simple
+
+setSpec value for selective harvesting: ABODC
+Name of the set (setName): Austrian Books Online in DC simple
+
+setSpec value for selective harvesting: ARIADNEDC
+Name of the set (setName): Ariadne records in DC simple
+
+setSpec value for selective harvesting: ARIADNEMARC
+Name of the set (setName): Ariadne records in MARC
+
+setSpec value for selective harvesting: MAPMARC
+Name of the set (setName): Maps and Globes records in MARC
+
+setSpec value for selective harvesting: FULLDC
+Name of the set (setName): Complete set of ONB records in DC simple
+
+setSpec value for selective harvesting: MAPDC
+Name of the set (setName): Maps and Globes records in DC simple
+
+setSpec value for selective harvesting: ABOMARC
+Name of the set (setName): Austrian Books Online in MARC
+
+setSpec value for selective harvesting: OAIBIBLIOA
+Name of the set (setName): Austrian Bibliography A
+
+setSpec value for selective harvesting: MUSHANDC
+Name of the set (setName): Musikhandschriften in DC
+
+setSpec value for selective harvesting: MUSHANMARC
+Name of the set (setName): Music Manuscripts
+
+setSpec value for selective harvesting: CERLMARC
+Name of the set (setName): Old prints and manuscripts for CERL portal
+
+
+
+
+ +
+
+ +
+
+
+
+
    +
  • SPARQL
      +
    • Query language for the semantic web
    • +
    • since 2008 W3C recommendation
    • +
    • since 2013 SPARQL 1.1 W3C recommend
    • +
    +
  • +
+ +
+
+
+
+
+
+
    +
  • 4 Types of SPARQL Queries
      +
    • SELECT: select values and return them (we will only use that)
    • +
    • CONSTRUCT: create a new Graph
    • +
    • ASK: Boolean (True/False)
    • +
    • DESCRIBE: Describe a resource
    • +
    +
  • +
+ +
+
+
+
+
+
+
    +
  • Declare prefix shortcuts (optional)
      +
    • PREFIX foo: <...>
    • +
    +
  • +
  • Query result clause
      +
    • SELECT ...
    • +
    +
  • +
  • Define the dataset (optional)
      +
    • FROM <...>
    • +
    +
  • +
  • Query pattern
      +
    • WHERE { +... +}
    • +
    +
  • +
  • Query modifiers (optional):
      +
    • GROUP BY ...
    • +
    • HAVING
    • +
    • ORDER BY
    • +
    • LIMIT
    • +
    • OFFSET
    • +
    • VALUES
    • +
    +
  • +
+ +
+
+
+
+
+
+

Fun with SPARQL

special thanks to Matthias Schlögl

+ +
+
+
+
+
+
In [4]:
+
+
+
from rdflib import Graph
+import pandas as pd
+
+ +
+
+
+ +
+
+
+
In [5]:
+
+
+
#authority file Goethe: https://d-nb.info/gnd/118540238
+goethe_rdf = "http://d-nb.info/gnd/118540238/about/lds.rdf"
+#authority file Kreisky: https://d-nb.info/gnd/118566512
+kreisky_rdf = "https://d-nb.info/gnd/118566512/about/lds.rdf"
+#subject heading 'Medizin': https://d-nb.info/gnd/4038243-6
+medicine_rdf = "https://d-nb.info/gnd/4038243-6/about/lds.rdf"
+
+#list all triples in authority file Goethe
+g=Graph()
+g.parse(goethe_rdf)
+properties = g.query('''
+   SELECT ?s ?p ?o 
+   WHERE {
+      ?s ?p ?o .
+   }
+''')
+df_goethe =  pd.DataFrame(properties)
+df_goethe
+
+ +
+
+
+ +
+
+ + +
+ +
Out[5]:
+ + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
012
0Nfba28132f47348deb35e068e321cda07http://d-nb.info/standards/elementset/gnd#fore...Iogann Vol'fgang
1http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/dnb#depr...http://d-nb.info/gnd/1032060956
2N750cd89e37414c83a6d96634b9560c51http://d-nb.info/standards/elementset/gnd#fore...Johanas Volfgangas
3N98bee7cb5ea94557b6c7faaeabd3b355http://d-nb.info/standards/elementset/gnd#fore...Wolfgang
4http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Goethe, Johann W. von
5http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/agrelon#...http://d-nb.info/gnd/118540246
6http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Nddc10440fa174cf5a779ba1d179ca5eb
7N64c11db427fa4d32bc32c9f230a8b097http://d-nb.info/standards/elementset/gnd#fore...J. W.
8N5aa3f9a945194cfeb8bd73f5e3f50803http://d-nb.info/standards/elementset/gnd#surnameGoethe
9Ne98739e792274a4d946e47da2570efc3http://d-nb.info/standards/elementset/gnd#surnameGete
10Nbd9ec60887f54cd6a83fa599b5e825d0http://d-nb.info/standards/elementset/gnd#prefixvon
11N87c2119d4ca8445eaeb2a7a43097652fhttp://d-nb.info/standards/elementset/gnd#surnameGoethe
12http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Gete, Yôhân Wôlfgang fôn
13http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Gūta
14Ne8534290cbbc4400a2f80acf8026ccc0http://d-nb.info/standards/elementset/gnd#surnameGete
15Ndef0774077874c35ab747adfebc437b7http://d-nb.info/standards/elementset/gnd#surnameGöthe
16http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Yo han Bol peu gang pon Goe te
17http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Gede
18http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Goethe, Iohan Wolphgang
19http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...N7cc2891306964755b9bdf8d72a0be010
20Nbd9ec60887f54cd6a83fa599b5e825d0http://d-nb.info/standards/elementset/gnd#surnameGoethe
21http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...N0ba3b1ff5d8840c2b0c39f267a33f961
22http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Nb86a22eab3a54c2bbae79f6490bf7965
23http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Gete, J. V.
24http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Goethe, J.W.
25N6cc402baba7f4933a1c7c045eee6db86http://d-nb.info/standards/elementset/gnd#prefixvon
26Nbbc98019cfaf4d468c0d241254425d58http://d-nb.info/standards/elementset/gnd#surnameǦūta
27http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#gndS...http://d-nb.info/standards/vocab/gnd/gnd-sc#15.1p
28N8230d88be63b4cacb8b53461b2059296http://d-nb.info/standards/elementset/gnd#pers...Goythe
29N227251f017f1402eb80c36168c6e0fbdhttp://d-nb.info/standards/elementset/gnd#surnameGoethe
............
677N82ac34a3812043b887008f7a4349a801http://d-nb.info/standards/elementset/gnd#fore...&Euml;han Vol'fhanh
678N48d55032a5fe47d49be99e21d1640724http://d-nb.info/standards/elementset/gnd#fore...יוהן וולפגנג פון
679http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...N49ea00d93bfb4da7a4d1dd3ced77d981
680http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...N3696cdc169ec4f06bf57c62a09f20ff4
681http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...N04e0413eb907433480aa5dc7bb884a22
682N20404e7f2b184bc393a43b3b8b0b0dbdhttp://d-nb.info/standards/elementset/gnd#fore...Yūhān Fūlfġānġ fūn
683http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Goethe, Johan Wolfgang von
684N4762d97eff1447eb8bc6d8582d4a9d8fhttp://d-nb.info/standards/elementset/gnd#surnameGete
685http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Göthe, J. W. von
686http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Nae059575f17e4ae9adb9581dd50837d6
687http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Höte, Iohann Volfqanq
688http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...N99eb032a0a274352ae4bc3a7c5604b09
689N88c18f57c143403db783c546e5572a23http://d-nb.info/standards/elementset/gnd#fore...J. W.
690N75618c0e7c024fba85d32d5300e88de1http://d-nb.info/standards/elementset/gnd#surnameGyot'e
691http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Nfba28132f47348deb35e068e321cda07
692N86494671df53426cbf10a85917d1d3c0http://d-nb.info/standards/elementset/gnd#fore...Johan W.
693http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...N9aa0135db91a48239019b7a693c48e0b
694N6cc402baba7f4933a1c7c045eee6db86http://d-nb.info/standards/elementset/gnd#surnameGoethe
695http://d-nb.info/gnd/118540238http://www.w3.org/2002/07/owl#sameAshttp://d-nb.info/gnd/1014927390
696http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#rela...http://d-nb.info/gnd/1085154025
697http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...N092464b644ac4980bf81e491b12c19d2
698http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Goethe, Giov. L.
699Nbc30a63ca0994cfc98f3d6cdf5a521e0http://d-nb.info/standards/elementset/gnd#surnameGete
700Nef12db51c4724ef0b5f370e73f25c37chttp://d-nb.info/standards/elementset/gnd#fore...Jochann Volfgang
701Nf2095e9da8df4496bebd3b0c33d39cb2http://d-nb.info/standards/elementset/gnd#pers...Goet'e
702Nf65c28c1faca4efd9c5cbc0daa3cfe5ehttp://d-nb.info/standards/elementset/gnd#prefixfūn
703http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Gūta, Yūhān Wulfgāng fūn
704http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Gót
705http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#gndS...http://d-nb.info/standards/vocab/gnd/gnd-sc#12.2p
706http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...N1d607f295a79421bb9b8427a0e91a96e
+

707 rows × 3 columns

+
+
+ +
+ +
+
+ +
+
+
+
In [6]:
+
+
+
#list all triples in subject heading 'Medizin'
+g=Graph()
+g.parse(medicine_rdf)
+properties = g.query('''
+   SELECT ?s ?p ?o 
+   WHERE {
+      ?s ?p ?o .
+   }
+''')
+df_medicine =  pd.DataFrame(properties)
+df_medicine
+
+ +
+
+
+ +
+
+ + +
+ +
Out[6]:
+ + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
012
0http://d-nb.info/gnd/4038243-6http://d-nb.info/standards/elementset/gnd#oldA...(DE-588c)4038243-6
1http://d-nb.info/gnd/4038243-6http://d-nb.info/standards/elementset/gnd#rela...http://dewey.info/class/610/
2http://d-nb.info/gnd/040382435/abouthttp://purl.org/dc/terms/licensehttp://creativecommons.org/publicdomain/zero/1.0/
3http://d-nb.info/gnd/4038243-6http://d-nb.info/standards/elementset/gnd#vari...Heilkunst
4http://d-nb.info/gnd/4038243-6http://www.w3.org/2007/05/powder-s#describedbyhttp://d-nb.info/gnd/040382435/about
5http://d-nb.info/gnd/4038243-6http://d-nb.info/standards/elementset/gnd#pref...Medizin
6http://d-nb.info/gnd/4038243-6http://www.w3.org/1999/02/22-rdf-syntax-ns#typehttp://d-nb.info/standards/elementset/gnd#Subj...
7http://d-nb.info/gnd/4038243-6http://d-nb.info/standards/elementset/gnd#gndI...4038243-6
8http://d-nb.info/gnd/4038243-6http://www.w3.org/2002/07/owl#sameAshttp://www.wikidata.org/entity/Q11190
9http://d-nb.info/gnd/040382435/abouthttp://purl.org/dc/terms/modified2017-01-25T16:58:26
10http://d-nb.info/gnd/4038243-6http://d-nb.info/standards/elementset/gnd#vari...Medicine
11http://d-nb.info/gnd/4038243-6http://d-nb.info/standards/elementset/gnd#gndS...http://d-nb.info/standards/vocab/gnd/gnd-sc#27.1a
12http://d-nb.info/gnd/4038243-6http://d-nb.info/standards/elementset/gnd#vari...Humanmedizin
13http://d-nb.info/gnd/4038243-6http://www.w3.org/2004/02/skos/core#exactMatchhttp://zbw.eu/stw/descriptor/15658-5
+
+
+ +
+ +
+
+ +
+
+
+
In [7]:
+
+
+
#list all distinct predicates in subject heading 'Medizin'
+g=Graph()
+g.parse(medicine_rdf)
+properties = g.query('''
+   SELECT DISTINCT ?p 
+   #SELECT (COUNT(DISTINCT ?p) as ?cnt)
+   WHERE {
+      ?s ?p ?o .
+   }
+''')
+df_medicine =  pd.DataFrame(properties)
+df_medicine
+
+ +
+
+
+ +
+
+ + +
+ +
Out[7]:
+ + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
0
0http://d-nb.info/standards/elementset/gnd#vari...
1http://www.w3.org/1999/02/22-rdf-syntax-ns#type
2http://d-nb.info/standards/elementset/gnd#gndI...
3http://purl.org/dc/terms/license
4http://www.w3.org/2002/07/owl#sameAs
5http://d-nb.info/standards/elementset/gnd#oldA...
6http://www.w3.org/2007/05/powder-s#describedby
7http://d-nb.info/standards/elementset/gnd#rela...
8http://d-nb.info/standards/elementset/gnd#gndS...
9http://purl.org/dc/terms/modified
10http://d-nb.info/standards/elementset/gnd#pref...
11http://www.w3.org/2004/02/skos/core#exactMatch
+
+
+ +
+ +
+
+ +
+
+
+
In [8]:
+
+
+
#list all variantNameForTheSubjectHeading 'Medizin'
+g=Graph()
+g.parse(medicine_rdf)
+properties = g.query('''
+   PREFIX gndo: <http://d-nb.info/standards/elementset/gnd#>
+   SELECT ?o 
+   WHERE {
+      ?s gndo:variantNameForTheSubjectHeading ?o .
+      #?s gndo:preferredNameForTheSubjectHeading ?o .
+   }
+''')
+df_medicine =  pd.DataFrame(properties)
+df_medicine
+
+ +
+
+
+ +
+
+ + +
+ +
Out[8]:
+ + + +
+
+ + + + + + + + + + + + + + + + + + + + + + +
0
0Medicine
1Heilkunst
2Humanmedizin
+
+
+ +
+ +
+
+ +
+
+
+
In [9]:
+
+
+
#count all objects in authority file Kreisky
+g=Graph()
+g.parse(kreisky_rdf)
+properties = g.query('''
+   SELECT ?o (COUNT(*) AS ?cnt) {
+      ?s ?p ?o .
+   } GROUP BY ?o ORDER BY DESC(?cnt)
+''')
+df_kreisky =  pd.DataFrame(properties)
+df_kreisky
+
+ +
+
+
+ +
+
+ + +
+ +
Out[9]:
+ + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
01
0http://d-nb.info/gnd/4066009-62
1(DE-588c)4032993-81
2Bundeskanzler 1970-19831
3http://dbpedia.org/resource/Bruno_Kreisky1
41185665121
5http://d-nb.info/standards/elementset/gnd#Diff...1
62016-12-16T22:40:251
7http://id.loc.gov/authorities/n500439481
8http://www.filmportal.de/person/5B113A52F8F14A...1
9Politiker, Oesterreich1
10http://d-nb.info/standards/vocab/gnd/gnd-sc#16.5p1
11http://d-nb.info/standards/vocab/gnd/gender#male1
12http://www.wikidata.org/entity/Q445171
13(DE-588a)1185665121
14https://de.wikipedia.org/wiki/Bruno_Kreisky1
15Kreisky, Bruno1
16Kreisky1
17http://creativecommons.org/publicdomain/zero/1.0/1
18http://d-nb.info/standards/vocab/gnd/geographi...1
19http://d-nb.info/gnd/4046517-21
20http://www.isni.org/00000001126087671
21Bruno1
221911-01-221
23http://d-nb.info/gnd/118566512/about1
241990-07-291
25http://viaf.org/viaf/319984841
26http://d-nb.info/gnd/2029382-31
27N7c57750704364dbdbd89505b49c6bd9a1
28http://d-nb.info/gnd/1210360731
+
+
+ +
+ +
+
+ +
+
+
+
In [10]:
+
+
+
#count all predicates in authority file Kreisky
+g=Graph()
+g.parse(kreisky_rdf)
+properties = g.query('''
+   SELECT ?p(COUNT(*) AS ?cnt) {
+      ?s ?p ?o .
+   } GROUP BY ?p ORDER BY DESC(?cnt)
+''')
+df_kreisky =  pd.DataFrame(properties)
+df_kreisky
+
+ +
+
+
+ +
+
+ + +
+ +
Out[10]:
+ + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
01
0http://www.w3.org/2002/07/owl#sameAs6
1http://d-nb.info/standards/elementset/gnd#biog...2
2http://d-nb.info/standards/elementset/gnd#oldA...2
3http://d-nb.info/standards/elementset/gnd#gndS...1
4http://d-nb.info/standards/elementset/gnd#fore...1
5http://purl.org/dc/terms/license1
6http://d-nb.info/standards/elementset/gnd#prof...1
7http://www.w3.org/2007/05/powder-s#describedby1
8http://d-nb.info/standards/elementset/gnd#geog...1
9http://d-nb.info/standards/elementset/gnd#affi...1
10http://xmlns.com/foaf/0.1/page1
11http://d-nb.info/standards/elementset/gnd#pref...1
12http://d-nb.info/standards/elementset/gnd#fami...1
13http://d-nb.info/standards/elementset/gnd#date...1
14http://d-nb.info/standards/elementset/gnd#plac...1
15http://purl.org/dc/terms/modified1
16http://d-nb.info/standards/elementset/gnd#surname1
17http://d-nb.info/standards/elementset/gnd#plac...1
18http://d-nb.info/standards/elementset/gnd#gender1
19http://d-nb.info/standards/elementset/gnd#date...1
20http://d-nb.info/standards/elementset/gnd#pref...1
21http://d-nb.info/standards/elementset/gnd#gndI...1
22http://www.w3.org/1999/02/22-rdf-syntax-ns#type1
+
+
+ +
+ +
+
+ +
+
+
+
In [11]:
+
+
+
#check 'sameAs'
+g=Graph()
+g.parse('https://d-nb.info/gnd/118566512/about/lds.rdf')
+properties = g.query('''
+   PREFIX owl: <http://www.w3.org/2002/07/owl#>
+   SELECT ?o 
+   WHERE {
+      ?s owl:sameAs ?o .
+   }
+''')
+df_kreisky =  pd.DataFrame(properties)
+df_kreisky
+
+ +
+
+
+ +
+
+ + +
+ +
Out[11]:
+ + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
0
0http://www.filmportal.de/person/5B113A52F8F14A...
1http://www.isni.org/0000000112608767
2http://www.wikidata.org/entity/Q44517
3http://viaf.org/viaf/31998484
4http://id.loc.gov/authorities/n50043948
5http://dbpedia.org/resource/Bruno_Kreisky
+
+
+ +
+ +
+
+ +
+
+
+ + + + + + diff --git a/html-versions/2 - Metadata and Catalogue.slides.html b/html-versions/2 - Metadata and Catalogue.slides.html new file mode 100644 index 0000000..d668e0f --- /dev/null +++ b/html-versions/2 - Metadata and Catalogue.slides.html @@ -0,0 +1,15385 @@ + + + + + + + + + + + + +2 - Metadata and Catalogue slides + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+
+

In this block:

    +
  • Overview metadata formats
  • +
  • Overview container formats
  • +
  • Overview protocols
  • +
  • Overview SPARQL
  • +
+ +
+
+
+
+
+
+
    +
  • Example: SRU (2.1)
  • +
  • Example: data harvesting OAI-PMH (2.2)
  • +
  • Example: SPARQL (2.3)
  • +
+ +
+
+
+
+
+
+

Overview metadata formats

+
+
+
+
+
+
+
    +
  • Dublin Core
      +
    • set of vocabulary terms to describe digital resources
    • +
    • 15 classic metadata terms, known as the Dublin Core Metadata Element Set (DCMES)
    • +
    • DCMI Metadata Terms: terms of the DCMES + qualified terms
    • +
    • Dublin Core Metadata Initiative
    • +
    +
  • +
+ +
+
+
+
+
+
+
    +
  • MARC
      +
    • MARC (MAchine-Readable Cataloging) standards
        +
      • developed in the 1960s to create records that could be read by computers and shared among libraries
      • +
      +
    • +
    • MARC 21, MARC record format for the 21st century
    • +
    • Full MARC 21 Record Examples
    • +
    +
  • +
+ +
+
+
+
+
+
+
    +
  • Dublin Core Metadata Element Set (DCMES) 1.1

    +
      +
    1. Title: The name of the object
    2. +
    3. Creator: An entity primarily responsible for making the resource
    4. +
    5. Subject: The topic addressed by the work
    6. +
    7. Description: An account of the resource
    8. +
    9. Publisher: The agent or agency responsible for making the object available
    10. +
    11. Contributor: An entity responsible for making contributions to the resource
    12. +
    13. Date: The date of publication
    14. +
    15. Type: The nature or genre of the resource
    16. +
    17. Format: The file format, physical medium, or dimensions of the resource
    18. +
    19. Identifier: String or number used to uniquely identify the object
    20. +
    +
  • +
+ +
+
+
+
+
+
+
    +
  • Dublin Core Metadata Element Set (DCMES) 1.1

    +
      +
    1. Source: Objects, either print or electronic, from which this object is derived, if applicable
    2. +
    3. Language: Language of the intellectual content
    4. +
    5. Relation: Relationship to other objects
    6. +
    7. Coverage: The spatial locations and temporal durations characteristic of the object
    8. +
    9. Rights: Information about rights held in and over the resource
    10. +
    +
  • +
+ +
+
+
+
+
+
+

Overview container formats

+
+
+
+
+
+
+ + +
+
+
+
+
+
+ + +
+
+
+
+
+
+
    +
  • JSON
      +
    • a string = { "name":"John" }
    • +
    • a number = { "age":30 }
    • +
    • an object (JSON object) = {"employee":{ "name":"John", "age":30, "city":"New York" }}
    • +
    • an array = {"employees":[ "John", "Anna", "Peter" ]}
    • +
    • a boolean = { "sale":true }
    • +
    • null = { "middlename":null }
    • +
    +
  • +
+ +
+
+
+
+
+
+
    +
  • JSON-LD
      +
    • JSON for Linked Data
    • +
    • keywords
        +
      • @context to provide additional mappings from JSON to an RDF model (map terms to IRIs)
      • +
      • @id to uniquely identify things
      • +
      • @type to set the data type of a node or typed value
      • +
      • @container to set the default container type for a term
      • +
      • "@container": "@set" defines a container as an unordered set
      • +
      +
    • +
    +
  • +
+ +
+
+
+
+
+
+
{
+  "@context": {
+    "name": "http://xmlns.com/foaf/0.1/name",
+    "homepage": {
+      "@id": "http://xmlns.com/foaf/0.1/workplaceHomepage",
+      "@type": "@id"
+    },
+    "Person": "http://xmlns.com/foaf/0.1/Person"
+  },
+  "@id": "https://me.example.com",
+  "@type": "Person",
+  "name": "John Smith",
+  "homepage": "https://www.example.com/"
+}
+
+ +
+
+
+
+
+
+
    +
  • RDF (Resource Description Framework) W3C standard for modeling information for the semantic web
  • +
  • RDF Triples
      +
    • describe everything as subject, predicate and object expression
        +
      • subject denotes the resource
      • +
      • predicate, a term used to describe the subject
      • +
      • object, the thing that the verb is acting upon, can be another resource, or just a literal value
      • +
      +
    • +
    +
  • +
+ +
+
+
+
+
+
+
    +
  • JSON-LD Processing Algorithms
      +
    • JSON-LD Expaneded
        +
      • replaces terms with the URIs they expand to
      • +
      • necessary for further transformations
      • +
      • removes context
      • +
      +
    • +
    • JSON-LD Compacted
        +
      • removes context
      • +
      • makes it easier to read
      • +
      +
    • +
    • JSON-LD Flattened
        +
      • all properties of a node are collected in a single JSON object
      • +
      • a labeled directed graph ()
      • +
      +
    • +
    • JSON-LD Framing +
    • +
    +
  • +
+ +
+
+
+
+
+
+ +
{
+...
+    "publisher": "Arn. Giull. de Brocario",
+    "place_of_publication": "Compluti",
+    "language": "http://id.loc.gov/vocabulary/iso639-2/mul",
+    "@id": "https://open-na.hosted.exlibrisgroup.com/alma/43ACC_ONB/bibs/990028618530603338",
+    "title": "Biblia polyglotta",
+    "@context": "https://open-na.hosted.exlibrisgroup.com/alma/contexts/bib"
+}
+
+ + +
+
+
+
+
+
In [1]:
+
+
+
import requests
+resp=requests.get("https://open-na.hosted.exlibrisgroup.com/alma/43ACC_NETWORK/bibs/990106901740203331")
+resp.json()
+
+ +
+
+
+ +
+
+ + +
+ +
Out[1]:
+ + + + +
+
{'date': '9999',
+ 'note': 'Aus: (Sammelband von 63 Hochzeitsgedichten).',
+ 'identifier': [{'label': '(DE-599)OBVAC10480601'},
+  {'label': '(Aleph)010690174ACC01'},
+  {'label': '(AT-OBV)AC10480601'},
+  {'label': 'AC10480601'}],
+ '@type': 'Book',
+ 'place_of_publication': 's.l.',
+ 'language': 'http://id.loc.gov/vocabulary/iso639-2/ger',
+ '@id': 'https://open-na.hosted.exlibrisgroup.com/alma/43ACC_NETWORK/bibs/990106901740203331',
+ 'title': 'Bey dem hochadelichen Helmrich- und Bassronischen Beylager, welches ... zu sonderbahren Ehren beyder Vermählten ...',
+ '@context': 'https://open-na.hosted.exlibrisgroup.com/alma/contexts/bib'}
+
+ +
+ +
+
+ +
+
+
+
+

Overview protocols

+
+
+
+
+
+
+ + +
+
+
+
+
+
+
In [2]:
+
+
+
import requests
+from lxml import etree
+cont=requests.get("https://obv-at-oenb.alma.exlibrisgroup.com/view/sru/43ACC_ONB?version=1.2&query=alma.barcode=%2BZ199052304&startRecord=0&maximumRecords=1&operation=searchRetrieve&recordSchema=marcxml").content
+e = etree.XML(cont)
+print(etree.tostring(e, encoding='unicode', pretty_print=True))
+
+ +
+
+
+ +
+
+ + +
+ +
+ + +
+
<searchRetrieveResponse xmlns="http://www.loc.gov/zing/srw/">
+  <version>1.2</version>
+  <numberOfRecords>1</numberOfRecords>
+  <records>
+    <record>
+      <recordSchema>marcxml</recordSchema>
+      <recordPacking>xml</recordPacking>
+      <recordData>
+        <record xmlns="http://www.loc.gov/MARC21/slim">
+          <leader>00000nam a2200000 c 4500</leader>
+          <controlfield tag="001">990030217420603338</controlfield>
+          <controlfield tag="005">20180123084300.0</controlfield>
+          <controlfield tag="007">cr#|||||||||||</controlfield>
+          <controlfield tag="007">tu</controlfield>
+          <controlfield tag="008">000101|1814####xx############|||#|#ger#u</controlfield>
+          <controlfield tag="009">AC09865194</controlfield>
+          <datafield tag="035" ind1=" " ind2=" ">
+            <subfield code="a">AC09865194</subfield>
+          </datafield>
+          <datafield tag="035" ind1=" " ind2=" ">
+            <subfield code="a">(Aleph)009871525ACC01</subfield>
+          </datafield>
+          <datafield tag="035" ind1=" " ind2=" ">
+            <subfield code="a">(DE-599)OBVAC09865194</subfield>
+          </datafield>
+          <datafield tag="035" ind1=" " ind2=" ">
+            <subfield code="a">(AT-OBV)AC09865194</subfield>
+          </datafield>
+          <datafield tag="035" ind1=" " ind2=" ">
+            <subfield code="a">(EXLNZ-43ACC_NETWORK)990098715250203331</subfield>
+          </datafield>
+          <datafield tag="040" ind1=" " ind2=" ">
+            <subfield code="a">ONB</subfield>
+            <subfield code="b">ger</subfield>
+            <subfield code="c">ONB-AK-RETRO</subfield>
+            <subfield code="d">AT-OeNB</subfield>
+            <subfield code="e">pi</subfield>
+          </datafield>
+          <datafield tag="041" ind1=" " ind2=" ">
+            <subfield code="a">ger</subfield>
+          </datafield>
+          <datafield tag="044" ind1=" " ind2=" ">
+            <subfield code="c">XA-DXDE</subfield>
+          </datafield>
+          <datafield tag="245" ind1="0" ind2="0">
+            <subfield code="a">&lt;&lt;Die&gt;&gt; Flucht über den Rhein odar Das unverhoffte Wiedersehen</subfield>
+            <subfield code="b">Ein erlustirend historisch-rührendes Familiengemälde mit Erscheinungen und vollstimmigen Chören von Baschkiren und Cosaken, und allen Batterien der Deutschen</subfield>
+          </datafield>
+          <datafield tag="264" ind1=" " ind2="1">
+            <subfield code="a">[Meißen]</subfield>
+            <subfield code="b">[Gödsche]</subfield>
+            <subfield code="c">1814</subfield>
+          </datafield>
+          <datafield tag="300" ind1=" " ind2=" ">
+            <subfield code="a">32 S.</subfield>
+          </datafield>
+          <datafield tag="689" ind1="0" ind2="0">
+            <subfield code="a">Deutschland</subfield>
+            <subfield code="D">g</subfield>
+            <subfield code="0">(DE-588)4011882-4</subfield>
+          </datafield>
+          <datafield tag="689" ind1="0" ind2="1">
+            <subfield code="a">Krieg</subfield>
+            <subfield code="D">s</subfield>
+            <subfield code="0">(DE-588)4033114-3</subfield>
+          </datafield>
+          <datafield tag="689" ind1="0" ind2="3">
+            <subfield code="a">Belletristische Darstellung</subfield>
+            <subfield code="A">f</subfield>
+          </datafield>
+          <datafield tag="689" ind1="0" ind2=" ">
+            <subfield code="5">AT-OBV</subfield>
+            <subfield code="5">ONB-AK</subfield>
+          </datafield>
+          <datafield tag="689" ind1="1" ind2="0">
+            <subfield code="a">Drama</subfield>
+            <subfield code="D">s</subfield>
+            <subfield code="0">(DE-588)4012899-4</subfield>
+          </datafield>
+          <datafield tag="689" ind1="1" ind2="1">
+            <subfield code="a">Deutsch</subfield>
+            <subfield code="D">s</subfield>
+            <subfield code="0">(DE-588)4113292-0</subfield>
+          </datafield>
+          <datafield tag="689" ind1="1" ind2=" ">
+            <subfield code="5">AT-OBV</subfield>
+            <subfield code="5">ONB-AK</subfield>
+          </datafield>
+          <datafield tag="710" ind1="2" ind2=" ">
+            <subfield code="a">Goedsche, Friedrich Wilhelm</subfield>
+            <subfield code="4">pbl</subfield>
+          </datafield>
+          <datafield tag="856" ind1="4" ind2=" ">
+            <subfield code="u">http://data.onb.ac.at/imgk/AZ00308934SZ00220134SZ00628562</subfield>
+            <subfield code="z">Zettel</subfield>
+            <subfield code="o">Katalogkarte</subfield>
+          </datafield>
+          <datafield tag="856" ind1="4" ind2="0">
+            <subfield code="m">V:AT-OBV;B:AT-OeNB</subfield>
+            <subfield code="q">application/html</subfield>
+            <subfield code="u">http://data.onb.ac.at/ABO/%2BZ182067107</subfield>
+            <subfield code="x">ONB-ABO</subfield>
+            <subfield code="3">Volltext</subfield>
+            <subfield code="o">OBV-ONB-ABO</subfield>
+          </datafield>
+          <datafield tag="856" ind1="4" ind2="0">
+            <subfield code="m">V:AT-OBV;B:AT-OeNB</subfield>
+            <subfield code="q">application/html</subfield>
+            <subfield code="u">http://data.onb.ac.at/ABO/%2BZ199052304</subfield>
+            <subfield code="x">ONB-ABO</subfield>
+            <subfield code="3">Volltext</subfield>
+            <subfield code="o">OBV-ONB-ABO</subfield>
+          </datafield>
+          <datafield tag="974" ind1="0" ind2="s">
+            <subfield code="V">029</subfield>
+            <subfield code="a">LZ01187985</subfield>
+          </datafield>
+          <datafield tag="974" ind1="0" ind2="s">
+            <subfield code="F">030</subfield>
+            <subfield code="A">u|1uf||||||37</subfield>
+          </datafield>
+          <datafield tag="974" ind1="0" ind2="s">
+            <subfield code="F">050</subfield>
+            <subfield code="A">a|a|||||g|||||</subfield>
+          </datafield>
+          <datafield tag="974" ind1="0" ind2="s">
+            <subfield code="F">051</subfield>
+            <subfield code="A">m|||||||</subfield>
+          </datafield>
+          <datafield tag="980" ind1="0" ind2=" ">
+            <subfield code="a">0</subfield>
+            <subfield code="9">LOCAL</subfield>
+          </datafield>
+          <datafield tag="980" ind1="0" ind2=" ">
+            <subfield code="a">ONB-AK-RETRO</subfield>
+            <subfield code="9">LOCAL</subfield>
+          </datafield>
+          <datafield tag="982" ind1=" " ind2=" ">
+            <subfield code="f">Drama</subfield>
+            <subfield code="9">LOCAL</subfield>
+          </datafield>
+          <datafield tag="982" ind1=" " ind2=" ">
+            <subfield code="f">Dramen / deutsche / 19. Jh.</subfield>
+            <subfield code="9">LOCAL</subfield>
+          </datafield>
+          <datafield tag="AVA" ind1=" " ind2=" ">
+            <subfield code="0">990030217420603338</subfield>
+            <subfield code="8">22288570940003338</subfield>
+            <subfield code="a">43ACC_ONB</subfield>
+            <subfield code="b">ZALT</subfield>
+            <subfield code="c">State Hall at Josefsplatz</subfield>
+            <subfield code="d">80.J.58</subfield>
+            <subfield code="e">available</subfield>
+            <subfield code="f">1</subfield>
+            <subfield code="g">0</subfield>
+            <subfield code="i">ONB</subfield>
+            <subfield code="j">PRUNK</subfield>
+            <subfield code="p">1</subfield>
+            <subfield code="q">Department of Manuscripts and Rare Books (ALT)</subfield>
+          </datafield>
+          <datafield tag="AVA" ind1=" " ind2=" ">
+            <subfield code="0">990030217420603338</subfield>
+            <subfield code="8">22288570920003338</subfield>
+            <subfield code="a">43ACC_ONB</subfield>
+            <subfield code="b">ZFID</subfield>
+            <subfield code="c">Bildarchiv und Grafiksammlung</subfield>
+            <subfield code="d">288765-B</subfield>
+            <subfield code="e">available</subfield>
+            <subfield code="f">1</subfield>
+            <subfield code="g">0</subfield>
+            <subfield code="i">ONB</subfield>
+            <subfield code="j">MAG</subfield>
+            <subfield code="p">2</subfield>
+            <subfield code="q">Picture Archives and Graphics Department (FID)</subfield>
+          </datafield>
+        </record>
+      </recordData>
+      <recordIdentifier>990030217420603338</recordIdentifier>
+      <recordPosition>0</recordPosition>
+    </record>
+  </records>
+  <extraResponseData xmlns:xb="http://www.exlibris.com/repository/search/xmlbeans/">
+    <xb:exact>true</xb:exact>
+    <xb:responseDate>2019-05-02T16:19:32+0200</xb:responseDate>
+  </extraResponseData>
+</searchRetrieveResponse>
+
+
+
+
+ +
+
+ +
+
+
+
+
    +
  • OAI-PMH
      +
    • OAI-PMH (Open Archives Initiative Protocol for Metadata Harvesting) is used for metadata harvesting
    • +
    • 6 verbs
        +
      • GetRecord – Used to retrieve an individual metadata record.
      • +
      • Identify – Used to retrieve repository information (ex. name, version).
      • +
      • ListIdentifiers – Used to retrieve only headers.
      • +
      • ListMetadataFormats – Used to retrieve the available metadata formats.
      • +
      • ListRecords – Used to retrieve actual item metadata records.
      • +
      • ListSets – Used to retrieve the set structure of a repository
      • +
      +
    • +
    +
  • +
+ +
+
+
+
+
+
In [3]:
+
+
+
from sickle import Sickle
+sickle = Sickle('https://obv-at-oenb.alma.exlibrisgroup.com/view/oai/43ACC_ONB/request')
+oai_sets = sickle.ListSets()
+for oai_set in oai_sets:
+    print('setSpec value for selective harvesting: ' + oai_set.setSpec)
+    print('Name of the set (setName): ' + oai_set.setName + '\n')
+
+ +
+
+
+ +
+
+ + +
+ +
+ + +
+
setSpec value for selective harvesting: PAPYRUSDC
+Name of the set (setName): Papyri records in DC simple
+
+setSpec value for selective harvesting: FULLMARC
+Name of the set (setName): Complete set of ONB records in MARC
+
+setSpec value for selective harvesting: HANNAMARC
+Name of the set (setName): HANNA records in MARC
+
+setSpec value for selective harvesting: ESPERANTOMARC
+Name of the set (setName): Esperanto records in MARC
+
+setSpec value for selective harvesting: ESPERANTODC
+Name of the set (setName): Esperanto Records in DC simple
+
+setSpec value for selective harvesting: PAPYRUSMARC
+Name of the set (setName): Papyri records in MARC
+
+setSpec value for selective harvesting: HANNADC
+Name of the set (setName): HANNA records in DC simple
+
+setSpec value for selective harvesting: ABODC
+Name of the set (setName): Austrian Books Online in DC simple
+
+setSpec value for selective harvesting: ARIADNEDC
+Name of the set (setName): Ariadne records in DC simple
+
+setSpec value for selective harvesting: ARIADNEMARC
+Name of the set (setName): Ariadne records in MARC
+
+setSpec value for selective harvesting: MAPMARC
+Name of the set (setName): Maps and Globes records in MARC
+
+setSpec value for selective harvesting: FULLDC
+Name of the set (setName): Complete set of ONB records in DC simple
+
+setSpec value for selective harvesting: MAPDC
+Name of the set (setName): Maps and Globes records in DC simple
+
+setSpec value for selective harvesting: ABOMARC
+Name of the set (setName): Austrian Books Online in MARC
+
+setSpec value for selective harvesting: OAIBIBLIOA
+Name of the set (setName): Austrian Bibliography A
+
+setSpec value for selective harvesting: MUSHANDC
+Name of the set (setName): Musikhandschriften in DC
+
+setSpec value for selective harvesting: MUSHANMARC
+Name of the set (setName): Music Manuscripts
+
+setSpec value for selective harvesting: CERLMARC
+Name of the set (setName): Old prints and manuscripts for CERL portal
+
+
+
+
+ +
+
+ +
+
+
+
+
    +
  • SPARQL
      +
    • Query language for the semantic web
    • +
    • since 2008 W3C recommendation
    • +
    • since 2013 SPARQL 1.1 W3C recommend
    • +
    +
  • +
+ +
+
+
+
+
+
+
    +
  • 4 Types of SPARQL Queries
      +
    • SELECT: select values and return them (we will only use that)
    • +
    • CONSTRUCT: create a new Graph
    • +
    • ASK: Boolean (True/False)
    • +
    • DESCRIBE: Describe a resource
    • +
    +
  • +
+ +
+
+
+
+
+
+
    +
  • Declare prefix shortcuts (optional)
      +
    • PREFIX foo: <...>
    • +
    +
  • +
  • Query result clause
      +
    • SELECT ...
    • +
    +
  • +
  • Define the dataset (optional)
      +
    • FROM <...>
    • +
    +
  • +
  • Query pattern
      +
    • WHERE { +... +}
    • +
    +
  • +
  • Query modifiers (optional):
      +
    • GROUP BY ...
    • +
    • HAVING
    • +
    • ORDER BY
    • +
    • LIMIT
    • +
    • OFFSET
    • +
    • VALUES
    • +
    +
  • +
+ +
+
+
+
+
+
+

Fun with SPARQL

special thanks to Matthias Schlögl

+ +
+
+
+
+
+
In [4]:
+
+
+
from rdflib import Graph
+import pandas as pd
+
+ +
+
+
+ +
+
+
+
In [5]:
+
+
+
#authority file Goethe: https://d-nb.info/gnd/118540238
+goethe_rdf = "http://d-nb.info/gnd/118540238/about/lds.rdf"
+#authority file Kreisky: https://d-nb.info/gnd/118566512
+kreisky_rdf = "https://d-nb.info/gnd/118566512/about/lds.rdf"
+#subject heading 'Medizin': https://d-nb.info/gnd/4038243-6
+medicine_rdf = "https://d-nb.info/gnd/4038243-6/about/lds.rdf"
+
+#list all triples in authority file Goethe
+g=Graph()
+g.parse(goethe_rdf)
+properties = g.query('''
+   SELECT ?s ?p ?o 
+   WHERE {
+      ?s ?p ?o .
+   }
+''')
+df_goethe =  pd.DataFrame(properties)
+df_goethe
+
+ +
+
+
+ +
+
+ + +
+ +
Out[5]:
+ + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
012
0Nfba28132f47348deb35e068e321cda07http://d-nb.info/standards/elementset/gnd#fore...Iogann Vol'fgang
1http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/dnb#depr...http://d-nb.info/gnd/1032060956
2N750cd89e37414c83a6d96634b9560c51http://d-nb.info/standards/elementset/gnd#fore...Johanas Volfgangas
3N98bee7cb5ea94557b6c7faaeabd3b355http://d-nb.info/standards/elementset/gnd#fore...Wolfgang
4http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Goethe, Johann W. von
5http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/agrelon#...http://d-nb.info/gnd/118540246
6http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Nddc10440fa174cf5a779ba1d179ca5eb
7N64c11db427fa4d32bc32c9f230a8b097http://d-nb.info/standards/elementset/gnd#fore...J. W.
8N5aa3f9a945194cfeb8bd73f5e3f50803http://d-nb.info/standards/elementset/gnd#surnameGoethe
9Ne98739e792274a4d946e47da2570efc3http://d-nb.info/standards/elementset/gnd#surnameGete
10Nbd9ec60887f54cd6a83fa599b5e825d0http://d-nb.info/standards/elementset/gnd#prefixvon
11N87c2119d4ca8445eaeb2a7a43097652fhttp://d-nb.info/standards/elementset/gnd#surnameGoethe
12http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Gete, Yôhân Wôlfgang fôn
13http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Gūta
14Ne8534290cbbc4400a2f80acf8026ccc0http://d-nb.info/standards/elementset/gnd#surnameGete
15Ndef0774077874c35ab747adfebc437b7http://d-nb.info/standards/elementset/gnd#surnameGöthe
16http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Yo han Bol peu gang pon Goe te
17http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Gede
18http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Goethe, Iohan Wolphgang
19http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...N7cc2891306964755b9bdf8d72a0be010
20Nbd9ec60887f54cd6a83fa599b5e825d0http://d-nb.info/standards/elementset/gnd#surnameGoethe
21http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...N0ba3b1ff5d8840c2b0c39f267a33f961
22http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Nb86a22eab3a54c2bbae79f6490bf7965
23http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Gete, J. V.
24http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Goethe, J.W.
25N6cc402baba7f4933a1c7c045eee6db86http://d-nb.info/standards/elementset/gnd#prefixvon
26Nbbc98019cfaf4d468c0d241254425d58http://d-nb.info/standards/elementset/gnd#surnameǦūta
27http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#gndS...http://d-nb.info/standards/vocab/gnd/gnd-sc#15.1p
28N8230d88be63b4cacb8b53461b2059296http://d-nb.info/standards/elementset/gnd#pers...Goythe
29N227251f017f1402eb80c36168c6e0fbdhttp://d-nb.info/standards/elementset/gnd#surnameGoethe
............
677N82ac34a3812043b887008f7a4349a801http://d-nb.info/standards/elementset/gnd#fore...&Euml;han Vol'fhanh
678N48d55032a5fe47d49be99e21d1640724http://d-nb.info/standards/elementset/gnd#fore...יוהן וולפגנג פון
679http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...N49ea00d93bfb4da7a4d1dd3ced77d981
680http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...N3696cdc169ec4f06bf57c62a09f20ff4
681http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...N04e0413eb907433480aa5dc7bb884a22
682N20404e7f2b184bc393a43b3b8b0b0dbdhttp://d-nb.info/standards/elementset/gnd#fore...Yūhān Fūlfġānġ fūn
683http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Goethe, Johan Wolfgang von
684N4762d97eff1447eb8bc6d8582d4a9d8fhttp://d-nb.info/standards/elementset/gnd#surnameGete
685http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Göthe, J. W. von
686http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Nae059575f17e4ae9adb9581dd50837d6
687http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Höte, Iohann Volfqanq
688http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...N99eb032a0a274352ae4bc3a7c5604b09
689N88c18f57c143403db783c546e5572a23http://d-nb.info/standards/elementset/gnd#fore...J. W.
690N75618c0e7c024fba85d32d5300e88de1http://d-nb.info/standards/elementset/gnd#surnameGyot'e
691http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Nfba28132f47348deb35e068e321cda07
692N86494671df53426cbf10a85917d1d3c0http://d-nb.info/standards/elementset/gnd#fore...Johan W.
693http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...N9aa0135db91a48239019b7a693c48e0b
694N6cc402baba7f4933a1c7c045eee6db86http://d-nb.info/standards/elementset/gnd#surnameGoethe
695http://d-nb.info/gnd/118540238http://www.w3.org/2002/07/owl#sameAshttp://d-nb.info/gnd/1014927390
696http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#rela...http://d-nb.info/gnd/1085154025
697http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...N092464b644ac4980bf81e491b12c19d2
698http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Goethe, Giov. L.
699Nbc30a63ca0994cfc98f3d6cdf5a521e0http://d-nb.info/standards/elementset/gnd#surnameGete
700Nef12db51c4724ef0b5f370e73f25c37chttp://d-nb.info/standards/elementset/gnd#fore...Jochann Volfgang
701Nf2095e9da8df4496bebd3b0c33d39cb2http://d-nb.info/standards/elementset/gnd#pers...Goet'e
702Nf65c28c1faca4efd9c5cbc0daa3cfe5ehttp://d-nb.info/standards/elementset/gnd#prefixfūn
703http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Gūta, Yūhān Wulfgāng fūn
704http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...Gót
705http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#gndS...http://d-nb.info/standards/vocab/gnd/gnd-sc#12.2p
706http://d-nb.info/gnd/118540238http://d-nb.info/standards/elementset/gnd#vari...N1d607f295a79421bb9b8427a0e91a96e
+

707 rows × 3 columns

+
+
+ +
+ +
+
+ +
+
+
+
In [6]:
+
+
+
#list all triples in subject heading 'Medizin'
+g=Graph()
+g.parse(medicine_rdf)
+properties = g.query('''
+   SELECT ?s ?p ?o 
+   WHERE {
+      ?s ?p ?o .
+   }
+''')
+df_medicine =  pd.DataFrame(properties)
+df_medicine
+
+ +
+
+
+ +
+
+ + +
+ +
Out[6]:
+ + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
012
0http://d-nb.info/gnd/4038243-6http://d-nb.info/standards/elementset/gnd#oldA...(DE-588c)4038243-6
1http://d-nb.info/gnd/4038243-6http://d-nb.info/standards/elementset/gnd#rela...http://dewey.info/class/610/
2http://d-nb.info/gnd/040382435/abouthttp://purl.org/dc/terms/licensehttp://creativecommons.org/publicdomain/zero/1.0/
3http://d-nb.info/gnd/4038243-6http://d-nb.info/standards/elementset/gnd#vari...Heilkunst
4http://d-nb.info/gnd/4038243-6http://www.w3.org/2007/05/powder-s#describedbyhttp://d-nb.info/gnd/040382435/about
5http://d-nb.info/gnd/4038243-6http://d-nb.info/standards/elementset/gnd#pref...Medizin
6http://d-nb.info/gnd/4038243-6http://www.w3.org/1999/02/22-rdf-syntax-ns#typehttp://d-nb.info/standards/elementset/gnd#Subj...
7http://d-nb.info/gnd/4038243-6http://d-nb.info/standards/elementset/gnd#gndI...4038243-6
8http://d-nb.info/gnd/4038243-6http://www.w3.org/2002/07/owl#sameAshttp://www.wikidata.org/entity/Q11190
9http://d-nb.info/gnd/040382435/abouthttp://purl.org/dc/terms/modified2017-01-25T16:58:26
10http://d-nb.info/gnd/4038243-6http://d-nb.info/standards/elementset/gnd#vari...Medicine
11http://d-nb.info/gnd/4038243-6http://d-nb.info/standards/elementset/gnd#gndS...http://d-nb.info/standards/vocab/gnd/gnd-sc#27.1a
12http://d-nb.info/gnd/4038243-6http://d-nb.info/standards/elementset/gnd#vari...Humanmedizin
13http://d-nb.info/gnd/4038243-6http://www.w3.org/2004/02/skos/core#exactMatchhttp://zbw.eu/stw/descriptor/15658-5
+
+
+ +
+ +
+
+ +
+
+
+
In [7]:
+
+
+
#list all distinct predicates in subject heading 'Medizin'
+g=Graph()
+g.parse(medicine_rdf)
+properties = g.query('''
+   SELECT DISTINCT ?p 
+   #SELECT (COUNT(DISTINCT ?p) as ?cnt)
+   WHERE {
+      ?s ?p ?o .
+   }
+''')
+df_medicine =  pd.DataFrame(properties)
+df_medicine
+
+ +
+
+
+ +
+
+ + +
+ +
Out[7]:
+ + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
0
0http://d-nb.info/standards/elementset/gnd#vari...
1http://www.w3.org/1999/02/22-rdf-syntax-ns#type
2http://d-nb.info/standards/elementset/gnd#gndI...
3http://purl.org/dc/terms/license
4http://www.w3.org/2002/07/owl#sameAs
5http://d-nb.info/standards/elementset/gnd#oldA...
6http://www.w3.org/2007/05/powder-s#describedby
7http://d-nb.info/standards/elementset/gnd#rela...
8http://d-nb.info/standards/elementset/gnd#gndS...
9http://purl.org/dc/terms/modified
10http://d-nb.info/standards/elementset/gnd#pref...
11http://www.w3.org/2004/02/skos/core#exactMatch
+
+
+ +
+ +
+
+ +
+
+
+
In [8]:
+
+
+
#list all variantNameForTheSubjectHeading 'Medizin'
+g=Graph()
+g.parse(medicine_rdf)
+properties = g.query('''
+   PREFIX gndo: <http://d-nb.info/standards/elementset/gnd#>
+   SELECT ?o 
+   WHERE {
+      ?s gndo:variantNameForTheSubjectHeading ?o .
+      #?s gndo:preferredNameForTheSubjectHeading ?o .
+   }
+''')
+df_medicine =  pd.DataFrame(properties)
+df_medicine
+
+ +
+
+
+ +
+
+ + +
+ +
Out[8]:
+ + + +
+
+ + + + + + + + + + + + + + + + + + + + + + +
0
0Medicine
1Heilkunst
2Humanmedizin
+
+
+ +
+ +
+
+ +
+
+
+
In [9]:
+
+
+
#count all objects in authority file Kreisky
+g=Graph()
+g.parse(kreisky_rdf)
+properties = g.query('''
+   SELECT ?o (COUNT(*) AS ?cnt) {
+      ?s ?p ?o .
+   } GROUP BY ?o ORDER BY DESC(?cnt)
+''')
+df_kreisky =  pd.DataFrame(properties)
+df_kreisky
+
+ +
+
+
+ +
+
+ + +
+ +
Out[9]:
+ + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
01
0http://d-nb.info/gnd/4066009-62
1(DE-588c)4032993-81
2Bundeskanzler 1970-19831
3http://dbpedia.org/resource/Bruno_Kreisky1
41185665121
5http://d-nb.info/standards/elementset/gnd#Diff...1
62016-12-16T22:40:251
7http://id.loc.gov/authorities/n500439481
8http://www.filmportal.de/person/5B113A52F8F14A...1
9Politiker, Oesterreich1
10http://d-nb.info/standards/vocab/gnd/gnd-sc#16.5p1
11http://d-nb.info/standards/vocab/gnd/gender#male1
12http://www.wikidata.org/entity/Q445171
13(DE-588a)1185665121
14https://de.wikipedia.org/wiki/Bruno_Kreisky1
15Kreisky, Bruno1
16Kreisky1
17http://creativecommons.org/publicdomain/zero/1.0/1
18http://d-nb.info/standards/vocab/gnd/geographi...1
19http://d-nb.info/gnd/4046517-21
20http://www.isni.org/00000001126087671
21Bruno1
221911-01-221
23http://d-nb.info/gnd/118566512/about1
241990-07-291
25http://viaf.org/viaf/319984841
26http://d-nb.info/gnd/2029382-31
27N7c57750704364dbdbd89505b49c6bd9a1
28http://d-nb.info/gnd/1210360731
+
+
+ +
+ +
+
+ +
+
+
+
In [10]:
+
+
+
#count all predicates in authority file Kreisky
+g=Graph()
+g.parse(kreisky_rdf)
+properties = g.query('''
+   SELECT ?p(COUNT(*) AS ?cnt) {
+      ?s ?p ?o .
+   } GROUP BY ?p ORDER BY DESC(?cnt)
+''')
+df_kreisky =  pd.DataFrame(properties)
+df_kreisky
+
+ +
+
+
+ +
+
+ + +
+ +
Out[10]:
+ + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
01
0http://www.w3.org/2002/07/owl#sameAs6
1http://d-nb.info/standards/elementset/gnd#biog...2
2http://d-nb.info/standards/elementset/gnd#oldA...2
3http://d-nb.info/standards/elementset/gnd#gndS...1
4http://d-nb.info/standards/elementset/gnd#fore...1
5http://purl.org/dc/terms/license1
6http://d-nb.info/standards/elementset/gnd#prof...1
7http://www.w3.org/2007/05/powder-s#describedby1
8http://d-nb.info/standards/elementset/gnd#geog...1
9http://d-nb.info/standards/elementset/gnd#affi...1
10http://xmlns.com/foaf/0.1/page1
11http://d-nb.info/standards/elementset/gnd#pref...1
12http://d-nb.info/standards/elementset/gnd#fami...1
13http://d-nb.info/standards/elementset/gnd#date...1
14http://d-nb.info/standards/elementset/gnd#plac...1
15http://purl.org/dc/terms/modified1
16http://d-nb.info/standards/elementset/gnd#surname1
17http://d-nb.info/standards/elementset/gnd#plac...1
18http://d-nb.info/standards/elementset/gnd#gender1
19http://d-nb.info/standards/elementset/gnd#date...1
20http://d-nb.info/standards/elementset/gnd#pref...1
21http://d-nb.info/standards/elementset/gnd#gndI...1
22http://www.w3.org/1999/02/22-rdf-syntax-ns#type1
+
+
+ +
+ +
+
+ +
+
+
+
In [11]:
+
+
+
#check 'sameAs'
+g=Graph()
+g.parse('https://d-nb.info/gnd/118566512/about/lds.rdf')
+properties = g.query('''
+   PREFIX owl: <http://www.w3.org/2002/07/owl#>
+   SELECT ?o 
+   WHERE {
+      ?s owl:sameAs ?o .
+   }
+''')
+df_kreisky =  pd.DataFrame(properties)
+df_kreisky
+
+ +
+
+
+ +
+
+ + +
+ +
Out[11]:
+ + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
0
0http://www.filmportal.de/person/5B113A52F8F14A...
1http://www.isni.org/0000000112608767
2http://www.wikidata.org/entity/Q44517
3http://viaf.org/viaf/31998484
4http://id.loc.gov/authorities/n50043948
5http://dbpedia.org/resource/Bruno_Kreisky
+
+
+ +
+ +
+
+ +
+
+
+ + + + + + + diff --git a/html-versions/2.1 - SRU.html b/html-versions/2.1 - SRU.html new file mode 100644 index 0000000..b88b5e5 --- /dev/null +++ b/html-versions/2.1 - SRU.html @@ -0,0 +1,13216 @@ + + + + +2.1 - SRU + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+
+
In [1]:
+
+
+
from lxml import etree
+import requests
+import pandas as pd
+
+ +
+
+
+ +
+
+
+
In [2]:
+
+
+
def getDCDataMMS(mms_id):
+    cont=requests.get('https://obv-at-oenb.alma.exlibrisgroup.com/view/sru/43ACC_ONB?version=1.2&query=alma.mms_id=' 
+                      + mms_id + '&startRecord=0&maximumRecords=1&operation=searchRetrieve&recordSchema=dc').content
+    e = etree.XML(cont)
+    namespaces = {
+        'srw': 'http://www.loc.gov/zing/srw/',
+        'srw_dc': 'info:srw/schema/1/dc-schema',
+        'dc': 'http://purl.org/dc/elements/1.1/'
+    }
+    xpath = '/srw:searchRetrieveResponse/srw:records/srw:record/srw:recordData/srw_dc:dc/dc:{}/text()'
+    
+    titleResult = e.xpath(xpath.format('title'), namespaces=namespaces)
+    title = "; ".join(titleResult) if titleResult else ''
+    
+    contributorResult = e.xpath(xpath.format('contributor'), namespaces=namespaces)
+    contributor = "; ".join(contributorResult) if contributorResult else ''
+    
+    dateResult = e.xpath(xpath.format('date'), namespaces=namespaces)
+    date = "; ".join(dateResult) if dateResult else ''
+    return [title, contributor, date]
+
+ +
+
+
+ +
+
+
+
In [3]:
+
+
+
getDCDataMMS(str(990048102650603338))
+
+ +
+
+
+ +
+
+ + +
+ +
Out[3]:
+ + + + +
+
['Sammlung der besten Reisebeschreibungen', '', '1784']
+
+ +
+ +
+
+ +
+
+
+
In [ ]:
+
+
+
 
+
+ +
+
+
+ +
+
+
+ + + + + + diff --git a/html-versions/2.2 - OAI-PMH.html b/html-versions/2.2 - OAI-PMH.html new file mode 100644 index 0000000..9895345 --- /dev/null +++ b/html-versions/2.2 - OAI-PMH.html @@ -0,0 +1,13451 @@ + + + + +2.2 - OAI-PMH + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+
+
+

We are going to use Sickle (https://sickle.readthedocs.io/en/latest/tutorial.html) to harvest the OAi-PMH interface of the Austrian National Library.

+ +
+
+
+
+
+
In [1]:
+
+
+
from sickle import Sickle
+from lxml import etree
+
+ +
+
+
+ +
+ +
+
+
In [2]:
+
+
+
sickle = Sickle('https://obv-at-oenb.alma.exlibrisgroup.com/view/oai/43ACC_ONB/request')
+
+ +
+
+
+ +
+
+
+
+

First, list all available OAI-PMH Sets of the Austrian National Library

+ +
+
+
+
+
+
In [3]:
+
+
+
oai_sets = sickle.ListSets()
+for oai_set in oai_sets:
+    print('setSpec value for selective harvesting: ' + oai_set.setSpec)
+    print('Name of the set (setName): ' + oai_set.setName + '\n')
+
+ +
+
+
+ +
+
+ + +
+ +
+ + +
+
setSpec value for selective harvesting: PAPYRUSDC
+Name of the set (setName): Papyri records in DC simple
+
+setSpec value for selective harvesting: FULLMARC
+Name of the set (setName): Complete set of ONB records in MARC
+
+setSpec value for selective harvesting: HANNAMARC
+Name of the set (setName): HANNA records in MARC
+
+setSpec value for selective harvesting: ESPERANTOMARC
+Name of the set (setName): Esperanto records in MARC
+
+setSpec value for selective harvesting: ESPERANTODC
+Name of the set (setName): Esperanto Records in DC simple
+
+setSpec value for selective harvesting: PAPYRUSMARC
+Name of the set (setName): Papyri records in MARC
+
+setSpec value for selective harvesting: HANNADC
+Name of the set (setName): HANNA records in DC simple
+
+setSpec value for selective harvesting: ABODC
+Name of the set (setName): Austrian Books Online in DC simple
+
+setSpec value for selective harvesting: ARIADNEDC
+Name of the set (setName): Ariadne records in DC simple
+
+setSpec value for selective harvesting: ARIADNEMARC
+Name of the set (setName): Ariadne records in MARC
+
+setSpec value for selective harvesting: MAPMARC
+Name of the set (setName): Maps and Globes records in MARC
+
+setSpec value for selective harvesting: FULLDC
+Name of the set (setName): Complete set of ONB records in DC simple
+
+setSpec value for selective harvesting: MAPDC
+Name of the set (setName): Maps and Globes records in DC simple
+
+setSpec value for selective harvesting: ABOMARC
+Name of the set (setName): Austrian Books Online in MARC
+
+setSpec value for selective harvesting: OAIBIBLIOA
+Name of the set (setName): Austrian Bibliography A
+
+setSpec value for selective harvesting: MUSHANDC
+Name of the set (setName): Musikhandschriften in DC
+
+setSpec value for selective harvesting: MUSHANMARC
+Name of the set (setName): Music Manuscripts
+
+setSpec value for selective harvesting: CERLMARC
+Name of the set (setName): Old prints and manuscripts for CERL portal
+
+
+
+
+ +
+
+ +
+
+
+
+

Now, list all available metadataformats.

+ +
+
+
+
+
+
In [4]:
+
+
+
oai_formats = sickle.ListMetadataFormats()
+for oai_format in oai_formats:
+    print(oai_format.metadataPrefix)
+
+ +
+
+
+ +
+
+ + +
+ +
+ + +
+
mods
+oai_dc
+oai_qdc
+marc21
+
+
+
+ +
+
+ +
+
+
+
+

List all possible dissertations, beginning from 2019-04-01.

+ +
+
+
+
+
+
In [5]:
+
+
+
namespaces = {
+    'oai': 'http://www.openarchives.org/OAI/2.0/',
+    'oai_dc': 'http://www.openarchives.org/OAI/2.0/oai_dc/',
+    'dc': 'http://purl.org/dc/elements/1.1/'
+}
+
+count=0
+
+for record in sickle.ListRecords(**{'metadataPrefix': 'oai_dc', 'set': 'FULLDC', 'from': '2019-04-30'}):
+    
+    if ('Dissertation' in record.raw):
+        #print('-' + record.raw + '-')
+        tree = etree.ElementTree(record.xml)
+        result = tree.xpath('/oai:record/oai:metadata/oai_dc:dc/dc:title/text()', namespaces=namespaces)
+        if (result):
+            count += 1
+            author = tree.xpath('/oai:record/oai:metadata/oai_dc:dc/dc:contributor/text()', namespaces=namespaces)
+            print(str(count) + ": " + result[0])
+            if author:
+                print(author[0])
+
+ +
+
+
+ +
+
+ + +
+ +
+ + +
+
1: Geschlechterdifferenzen in der Bildungssozialisation revisited ein Plädoyer für eine ganzheitliche Herangehensweise in Forschung, Intervention und Implementierung
+Jöstl, Gregoraut
+2: Alternative Vermittler, Identifizierung und Analyse journalistischer Vermittlungsleistungen im Internet
+Barrantes Leon, Eloy Andreasaut
+3: Von "re-creation" bis "glorification" - zur musikalischen Inszenierung des historischen Broadway-Sounds in amerikanischen Musicals des späten 20. Jahrhunderts
+Zagozdzon, Agnieszka1979-(DE-588)105018615Xaut
+4: Students' interactions and experiences in classroom activities that aim for co-creativity?
+Schmoelz, Alexanderaut
+5: Ansuchen um Tausch von Dissertationen
+NationalbibliothekWien(DE-588)19913-8aut
+6: Verkehrs- und Mobilitätserhebungen Einführung in Gender Planning
+Knoll, Bente1974-(DE-588)132826380aut
+7: Doctoral theses at NTNU
+Norges teknisk-naturvitenskapelige universitet(DE-588)5180253-3aut
+8: Frömmigkeit und Wissenschaft Ernst Troeltsch und sein theologisches Programm
+Apfelbacher, Karl-Ernst1940-2015(DE-588)131594974aut
+9: Versuche Über elektrolytische Oxydation und Reduktion
+Beck, Jacobaut
+10: Beiträge zur Kenntnis der Metalle der Cergruppe
+Beck, Hansaut
+11: Über p-Leukanilin und dessen Derivate
+Beetz, Max1883-(DE-588)1160760799aut
+12: Museum Philologicum et historicum, complectens: I. Jsaaci Casauboni ac Satyrica Graecorum poesi ... II. Ejusdem quatuor epistolas ... II. Euripidae Cyclopene ... IV. Inscriptionem veterem graecam nuper ad urbem in Via Appia effossam ... V. Aegidii Strauchii Olympikon agona. VI. Joh. Lehmanni Dissertationem historicam de Serapiae Aegyptiorum Deo. Thomas Crenius conlegit (etc.)
+Crenius, Thomas1648-1728(DE-588)100095089edt
+13: <<Die>> Theologie des Leibes von Papst Johannes Paul II. philosophische und theologische Grundlagen
+Rimmel, Thomas Maria1964-(DE-588)1050990366aut
+14: Modeling of plasma rotation in tokamaks
+Martitsch, Andreas Frankaut
+15: Intelligent supporting technologies for the maintenance of product configuration systems
+Speiser-Reinfrank, Florianaut
+16: <<The>> microbiome of controlled built environments
+Mahnert, Alexanderaut
+17: Axiomatic description of Gröbner reduction
+Fürst, Christophaut
+18: Probes and potential drugs for lysosomal diseases and Alzheimer´s
+Thonhofer, Martin Simonaut
+19: Printed organic electrochemical transistors performance parameters and applications
+Hütter, Philippaut
+20: Gutachten über Dissertationen an der Universität Wien
+Höfler, Otto1901-1987(DE-588)118551914aut
+21: Gutachten über Dissertationen an der Universität München
+Höfler, Otto1901-1987(DE-588)118551914aut
+22: Stellungnahme zur Dissertation von Hermann Reichert
+Höfler, Otto1901-1987(DE-588)118551914aut
+23: Sisters - Cyborgs - Drags das Denken in Begriffspersonen der Gender Studies
+Mertlitsch, Kirstin(DE-588)1095570242aut
+24: Schriftwechsel zur Dissertation von Hermann Reichert
+Höfler, Otto1901-1987(DE-588)118551914aut
+25: <<Der>> Lektor und sein Autor vergleichende Fallstudien zum Suhrkamp Verlag
+Sprengel, Marja-Christine(DE-588)1111909636aut
+26: It's about time model-based mutation testing for synchronous and asynchronous timed systems = Modellbasiertes Mutationstesten von synchronen und asynchronen zeitkritischen Systemen
+Lorber, Florian Lukasaut
+27: Ribosomal proteins as translational regulators of PTC-readthrough in the context of Epidermolysis bullosa
+Brandl, Clemensaut
+28: Interferometric vibrometry for combustion dynamics
+Peterleithner, Johannesaut
+29: Development of an operation strategy for plug-in hybrid electric vehicles long-term prediction and adaptation based on past vehicle and driver data
+Kraus, Haraldaut
+30: "Uninteressiertes Weltinteresse" über die Ausbildung einer ästhetischen (Denk-)Haltung im Werk Hannah Arendts
+Pavlik, Jennifer1983-(DE-588)142151033aut
+31: New challenges in digital forensics online storage and anonymous communication
+Mulazzani, Martinaut
+32: <<The>> fish gut microbiome contributions to its characterization and potential applications
+Ghanbari, Mahdiaut
+33: Auxiliary master equation approach for correlated quantum impurity problems out of equilibrium
+Dorda, Antoniusaut
+34: Building with lines efficient 3D scene abstraction for the built environment
+Hofer, Manuelaut
+35: Condition monitoring of lithium iron phosphate batteries by a probabilistic and a sensor-based approach
+Gallien, Thomasaut
+36: Katholische Frauenbewegung in Deutschland 1945-1962 Politik, Geschlecht und Religiosität im Katholischen Deutschen Frauenbund
+Illemann, Regina1982-(DE-588)1120623863aut
+37: Fügetechnik im UHPC-Schalenbau
+Santner, Gerhardaut
+38: Stahlbauliche Tragfähigkeit, Betontragfähigkeit und Verformungsverhalten von Verankerungsringen im Druckrohrleitungsbau
+Ecker, Alexanderaut
+
+
+
+ +
+
+ +
+
+
+
In [ ]:
+
+
+
 
+
+ +
+
+
+ +
+
+
+ + + + + + diff --git a/html-versions/2.3 - SPARQL.html b/html-versions/2.3 - SPARQL.html new file mode 100644 index 0000000..e682547 --- /dev/null +++ b/html-versions/2.3 - SPARQL.html @@ -0,0 +1,13283 @@ + + + + +2.3 - SPARQL + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+
+
+

We are going to use https://rdflib.github.io/sparqlwrapper/ to find newspapers with the subject heading "Medizin".

+ +
+
+
+
+
+
In [4]:
+
+
+
import requests
+import pandas as pd
+from SPARQLWrapper import SPARQLWrapper, JSON
+
+ +
+
+
+ +
+
+
+
+

Set the SPARQL-Endpoint for ANNO (http://anno.onb.ac.at/) the newspaper portal of the Austrian National Library.

+ +
+
+
+
+
+
In [5]:
+
+
+
anno_lod_endpoint = "https://lod.onb.ac.at/sparql/anno"
+
+ +
+
+
+ +
+
+
+
In [6]:
+
+
+
def get_sparql_result(service, query):
+    sparql = SPARQLWrapper(service)
+    sparql.setQuery(query)
+    sparql.setReturnFormat(JSON)
+    return sparql.query()
+
+def get_sparql_dataframe(service, query):
+    result = get_sparql_result(service, query)
+
+    processed_results = result.convert()
+    #get the headings for each column of the SPARQL result
+    cols = processed_results['head']['vars']
+
+    out = []
+    #get all lines of the SPARQL result
+    for row in processed_results['results']['bindings']:
+        item = []
+        for c in cols:
+            item.append(row.get(c, {}).get('value'))
+        out.append(item)
+
+    return pd.DataFrame(out, columns=cols)
+
+ +
+
+
+ +
+
+
+
In [7]:
+
+
+
query = '''
+PREFIX dc: <http://purl.org/dc/elements/1.1/>
+PREFIX edm: <http://www.europeana.eu/schemas/edm/>
+PREFIX dcterms: <http://purl.org/dc/terms/>
+SELECT ?title ?subjectURI ?manifest 
+WHERE {?subjectURI dc:subject <http://d-nb.info/gnd/4038243-6> .
+       ?subjectURI dc:title ?title .
+       ?subjectURI edm:isShownBy ?firstpage .
+       ?subjectURI edm:rights <http://creativecommons.org/publicdomain/mark/1.0/> .
+       ?firstpage dcterms:isReferencedBy ?manifest
+}'''
+
+ +
+
+
+ +
+
+
+
In [8]:
+
+
+
df = get_sparql_dataframe(anno_lod_endpoint, query)
+manifests = list(df['manifest'])
+len (manifests)
+
+ +
+
+
+ +
+
+ + +
+ +
+ + +
+
{'head': {'vars': ['title', 'subjectURI', 'manifest']}, 'results': {'bindings': [{'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/dma1874ag0001'}, 'title': {'type': 'literal', 'value': 'Der Militärarzt'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/dma1874ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/dma1875ag0001'}, 'title': {'type': 'literal', 'value': 'Der Militärarzt'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/dma1875ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/dma1876ag0001'}, 'title': {'type': 'literal', 'value': 'Der Militärarzt'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/dma1876ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/dma1877ag0001'}, 'title': {'type': 'literal', 'value': 'Der Militärarzt'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/dma1877ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/dma1867ag0001'}, 'title': {'type': 'literal', 'value': 'Der Militärarzt'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/dma1867ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/dma1868ag0001'}, 'title': {'type': 'literal', 'value': 'Der Militärarzt'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/dma1868ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/dma1869ag0001'}, 'title': {'type': 'literal', 'value': 'Der Militärarzt'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/dma1869ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/dma1870ag0001'}, 'title': {'type': 'literal', 'value': 'Der Militärarzt'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/dma1870ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/dma1871ag0001'}, 'title': {'type': 'literal', 'value': 'Der Militärarzt'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/dma1871ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/dma1872ag0001'}, 'title': {'type': 'literal', 'value': 'Der Militärarzt'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/dma1872ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/dma1873ag0001'}, 'title': {'type': 'literal', 'value': 'Der Militärarzt'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/dma1873ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18341101'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18341101/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18341105'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18341105/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18341108'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18341108/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18341112'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18341112/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18341115'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18341115/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18341119'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18341119/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18341122'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18341122/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18341126'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18341126/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18341129'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18341129/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18341203'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18341203/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18341206'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18341206/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18341210'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18341210/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18341213'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18341213/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18341217'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18341217/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18341220'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18341220/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18341224'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18341224/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18341227'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18341227/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18341231'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18341231/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350103'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350103/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350107'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350107/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350110'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350110/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350114'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350114/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350117'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350117/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350121'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350121/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350124'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350124/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350128'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350128/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350131'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350131/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350204'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350204/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350207'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350207/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350211'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350211/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350214'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350214/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350218'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350218/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350221'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350221/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350225'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350225/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350228'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350228/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350304'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350304/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350307'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350307/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350311'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350311/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350314'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350314/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350318'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350318/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350321'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350321/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350325'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350325/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350328'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350328/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350401'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350401/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350404'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350404/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350408'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350408/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350411'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350411/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350415'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350415/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350418'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350418/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350422'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350422/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350425'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350425/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350429'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350429/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350502'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350502/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350506'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350506/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350509'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350509/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350513'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350513/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350516'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350516/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350520'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350520/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350523'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350523/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350527'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350527/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350530'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350530/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350603'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350603/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350606'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350606/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350610'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350610/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350613'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350613/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350617'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350617/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350620'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350620/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350624'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350624/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350627'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350627/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350701'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350701/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350704'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350704/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350708'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350708/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350711'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350711/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350715'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350715/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350718'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350718/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350722'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350722/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350725'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350725/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350729'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350729/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350801'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350801/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350805'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350805/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350808'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350808/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350812'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350812/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350815'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350815/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350819'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350819/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350822'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350822/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350826'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350826/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350829'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350829/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350902'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350902/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350905'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350905/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350909'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350909/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350912'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350912/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350916'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350916/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350919'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350919/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350923'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350923/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350926'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350926/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18350930'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18350930/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18351003'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18351003/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18351007'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18351007/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18351010'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18351010/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18351014'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18351014/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300501'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300501/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300505'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300505/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300508'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300508/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300512'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300512/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300515'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300515/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300519'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300519/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300522'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300522/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300526'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300526/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300529'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300529/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300602'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300602/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300605'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300605/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300609'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300609/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300612'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300612/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300616'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300616/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300619'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300619/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300623'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300623/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300626'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300626/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300630'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300630/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300703'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300703/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300707'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300707/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300710'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300710/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300714'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300714/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300717'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300717/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300721'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300721/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300724'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300724/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300728'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300728/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300731'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300731/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300804'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300804/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300807'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300807/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300811'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300811/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300814'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300814/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300818'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300818/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300821'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300821/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300825'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300825/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300828'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300828/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300901'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300901/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300904'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300904/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300908'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300908/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300911'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300911/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300915'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300915/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300918'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300918/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300922'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300922/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300925'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300925/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18300929'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18300929/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18301002'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18301002/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18301006'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18301006/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18301009'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18301009/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18301013'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18301013/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18301016'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18301016/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18301020'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18301020/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18301023'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18301023/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18301027'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18301027/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18301030'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18301030/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18301103'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18301103/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18301106'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18301106/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18301110'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18301110/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18301113'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18301113/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18301117'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18301117/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18301120'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18301120/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18301124'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18301124/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18301127'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18301127/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18301201'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18301201/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18301204'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18301204/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18301208'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18301208/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18301211'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18301211/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18301215'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18301215/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18301218'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18301218/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18301222'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18301222/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18301224'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18301224/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18301229'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18301229/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310101'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310101/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310105'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310105/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310108'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310108/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310112'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310112/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310115'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310115/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310119'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310119/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310122'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310122/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310126'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310126/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310129'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310129/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310202'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310202/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310205'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310205/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310209'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310209/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310212'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310212/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310216'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310216/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310219'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310219/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310223'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310223/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310226'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310226/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310302'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310302/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310305'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310305/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310309'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310309/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310312'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310312/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310316'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310316/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310319'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310319/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310323'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310323/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310326'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310326/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310330'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310330/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310402'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310402/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310406'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310406/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310409'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310409/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310413'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310413/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310416'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310416/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310420'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310420/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310423'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310423/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310427'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310427/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310430'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310430/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310504'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310504/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310507'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310507/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310511'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310511/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310514'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310514/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310518'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310518/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310521'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310521/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310525'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310525/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310528'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310528/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310601'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310601/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310604'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310604/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310608'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310608/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310611'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310611/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310615'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310615/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310618'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310618/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310622'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310622/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310625'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310625/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310629'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310629/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310702'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310702/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310706'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310706/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310709'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310709/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310713'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310713/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310716'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310716/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310720'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310720/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310723'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310723/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310727'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310727/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310730'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310730/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310803'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310803/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310805'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310805/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310810'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310810/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310813'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310813/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310817'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310817/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310820'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310820/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310824'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310824/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310827'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310827/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310831'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310831/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310903'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310903/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310907'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310907/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310910'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310910/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310914'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310914/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310917'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310917/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310921'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310921/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310924'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310924/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18310928'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18310928/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18311001'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18311001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18311005'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18311005/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18311008'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18311008/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18311012'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18311012/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18311015'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18311015/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18311019'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18311019/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18311022'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18311022/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18311026'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18311026/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18311029'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18311029/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18311102'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18311102/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18311105'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18311105/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18311109'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18311109/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18311112'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18311112/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18311116'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18311116/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18311119'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18311119/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18311123'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18311123/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18311126'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18311126/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18311130'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18311130/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18311203'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18311203/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18311207'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18311207/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18311210'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18311210/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18311214'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18311214/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18311217'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18311217/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18311221'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18311221/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18311224'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18311224/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18311228'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18311228/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18311231'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18311231/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320104'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320104/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320107'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320107/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320111'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320111/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320114'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320114/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320118'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320118/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320121'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320121/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320125'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320125/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320128'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320128/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320201'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320201/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320204'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320204/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320208'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320208/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320211'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320211/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320215'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320215/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320218'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320218/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320222'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320222/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320225'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320225/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320229'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320229/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320303'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320303/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320307'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320307/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320310'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320310/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320314'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320314/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320317'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320317/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320321'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320321/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320324'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320324/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320328'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320328/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340301'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340301/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340305'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340305/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340308'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340308/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340312'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340312/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340315'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340315/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340319'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340319/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340322'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340322/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340326'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340326/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340329'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340329/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340402'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340402/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340405'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340405/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340409'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340409/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340412'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340412/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340416'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340416/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340419'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340419/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340423'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340423/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340426'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340426/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340430'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340430/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340503'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340503/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340507'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340507/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340510'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340510/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340514'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340514/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340517'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340517/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340521'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340521/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340524'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340524/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340528'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340528/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340531'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340531/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340604'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340604/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340607'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340607/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340611'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340611/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340614'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340614/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340618'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340618/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340621'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340621/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340625'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340625/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340628'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340628/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340702'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340702/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340705'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340705/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340709'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340709/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340712'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340712/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340716'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340716/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340719'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340719/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340723'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340723/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340726'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340726/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340730'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340730/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340802'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340802/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340806'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340806/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340809'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340809/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340813'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340813/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340816'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340816/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340820'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340820/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340823'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340823/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340827'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340827/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340830'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340830/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340903'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340903/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340906'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340906/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340910'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340910/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340913'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340913/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340917'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340917/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340920'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340920/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340924'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340924/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340927'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340927/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18341001'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18341001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18341004'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18341004/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18341008'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18341008/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18341011'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18341011/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18341015'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18341015/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18341018'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18341018/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18341022'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18341022/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18341025'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18341025/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18341029'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18341029/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18351017'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18351017/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18351021'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18351021/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18351024'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18351024/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18351028'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18351028/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18351031'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18351031/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18351104'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18351104/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18351107'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18351107/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18351111'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18351111/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18351114'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18351114/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18351118'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18351118/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18351121'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18351121/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18351125'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18351125/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18351128'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18351128/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18351202'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18351202/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18351205'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18351205/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18351209'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18351209/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18351212'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18351212/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18351216'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18351216/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18351219'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18351219/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18351223'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18351223/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18351226'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18351226/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18351230'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18351230/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360102'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360102/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360109'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360109/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360116'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360116/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360123'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360123/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360130'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360130/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360206'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360206/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360213'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360213/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360220'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360220/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360227'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360227/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360305'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360305/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360312'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360312/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360319'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360319/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360326'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360326/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360402'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360402/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360409'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360409/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360416'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360416/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360423'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360423/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360430'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360430/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360507'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360507/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360514'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360514/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360521'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360521/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360528'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360528/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360604'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360604/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360611'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360611/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360618'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360618/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360625'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360625/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360704'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360704/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360711'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360711/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360718'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360718/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360726'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360726/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360801'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360801/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360806'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360806/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360815'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360815/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360822'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360822/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360829'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360829/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360905'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360905/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360912'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360912/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360919'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360919/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18360926'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18360926/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18361003'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18361003/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18361010'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18361010/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18361017'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18361017/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18361024'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18361024/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18361031'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18361031/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18361107'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18361107/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18361114'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18361114/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18361121'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18361121/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18361128'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18361128/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18361205'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18361205/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18361212'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18361212/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18361219'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18361219/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18361226'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18361226/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370102'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370102/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370105'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370105/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370109'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370109/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370112'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370112/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370116'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370116/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370119'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370119/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370123'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370123/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370126'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370126/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370130'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370130/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370202'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370202/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370206'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370206/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370209'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370209/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370213'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370213/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370216'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370216/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370220'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370220/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370223'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370223/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370227'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370227/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370302'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370302/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370306'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370306/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370309'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370309/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370313'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370313/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370316'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370316/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370320'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370320/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370323'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370323/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370327'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370327/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370330'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370330/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380319'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380319/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380322'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380322/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380326'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380326/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380329'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380329/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380402'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380402/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380405'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380405/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380409'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380409/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380412'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380412/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380416'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380416/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380419'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380419/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380423'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380423/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380426'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380426/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380430'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380430/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380503'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380503/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380507'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380507/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380510'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380510/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380514'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380514/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380517'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380517/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380521'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380521/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380524'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380524/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380528'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380528/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380531'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380531/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380604'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380604/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380607'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380607/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380611'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380611/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380614'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380614/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380618'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380618/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380621'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380621/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380625'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380625/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380628'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380628/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380702'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380702/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380705'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380705/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380709'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380709/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380712'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380712/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380716'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380716/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380719'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380719/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380723'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380723/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380726'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380726/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380730'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380730/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380802'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380802/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380806'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380806/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380809'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380809/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380813'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380813/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380817'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380817/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380821'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380821/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380824'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380824/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380827'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380827/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380830'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380830/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380903'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380903/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380906'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380906/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380910'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380910/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380913'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380913/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380917'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380917/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380920'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380920/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380924'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380924/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380927'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380927/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18381001'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18381001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18381004'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18381004/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18381008'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18381008/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18381011'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18381011/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18381015'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18381015/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18381018'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18381018/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18381022'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18381022/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18381025'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18381025/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18381029'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18381029/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18381101'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18381101/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18381105'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18381105/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18381108'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18381108/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18381112'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18381112/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18381115'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18381115/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18381119'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18381119/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18381122'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18381122/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18381126'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18381126/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18381129'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18381129/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18381203'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18381203/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18381206'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18381206/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18381210'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18381210/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18381213'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18381213/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18381217'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18381217/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18381220'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18381220/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18381224'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18381224/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18381227'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18381227/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18381231'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18381231/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390103'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390103/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390107'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390107/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390110'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390110/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390114'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390114/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390116'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390116/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390121'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390121/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390124'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390124/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390128'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390128/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390131'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390131/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390204'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390204/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390207'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390207/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390211'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390211/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390214'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390214/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390218'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390218/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390221'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390221/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390225'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390225/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390228'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390228/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390304'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390304/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390307'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390307/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390311'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390311/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390314'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390314/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390318'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390318/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390321'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390321/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390325'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390325/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390328'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390328/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390401'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390401/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390404'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390404/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390408'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390408/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390411'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390411/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390415'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390415/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390418'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390418/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390422'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390422/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390425'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390425/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390429'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390429/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390502'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390502/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390506'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390506/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390509'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390509/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390513'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390513/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390516'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390516/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390520'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390520/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390523'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390523/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390527'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390527/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390530'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390530/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390603'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390603/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390606'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390606/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390610'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390610/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390613'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390613/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390617'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390617/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390620'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390620/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390624'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390624/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390627'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390627/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390701'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390701/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390704'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390704/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390708'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390708/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390711'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390711/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390715'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390715/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390718'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390718/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390722'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390722/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390725'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390725/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390729'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390729/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390801'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390801/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390805'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390805/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390808'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390808/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390812'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390812/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390815'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390815/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390819'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390819/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390822'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390822/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390826'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390826/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390829'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390829/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390902'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390902/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390905'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390905/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390909'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390909/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390912'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390912/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390916'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390916/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390919'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390919/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390923'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390923/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390926'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390926/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18390930'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18390930/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18391003'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18391003/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18391007'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18391007/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18391010'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18391010/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18391013'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18391013/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18391017'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18391017/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18391021'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18391021/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18391024'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18391024/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18391028'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18391028/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18391031'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18391031/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18391104'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18391104/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18391107'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18391107/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18391111'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18391111/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18391114'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18391114/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18391118'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18391118/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18391121'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18391121/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18391125'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18391125/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18391128'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18391128/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18391202'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18391202/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18391205'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18391205/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18391209'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18391209/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18391212'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18391212/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18391216'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18391216/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18391219'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18391219/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18391223'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18391223/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18391226'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18391226/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18391230'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18391230/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400102'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400102/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400106'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400106/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400109'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400109/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400113'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400113/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400116'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400116/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400120'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400120/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400123'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400123/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400127'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400127/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400130'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400130/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400203'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400203/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400206'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400206/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400210'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400210/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400213'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400213/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320331'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320331/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320404'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320404/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320407'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320407/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320411'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320411/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320414'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320414/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320418'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320418/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320421'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320421/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320425'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320425/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320428'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320428/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320502'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320502/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320505'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320505/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320509'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320509/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320512'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320512/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320516'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320516/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320519'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320519/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320523'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320523/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320526'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320526/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320530'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320530/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320602'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320602/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320606'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320606/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320609'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320609/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320613'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320613/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320616'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320616/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320620'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320620/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320623'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320623/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320627'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320627/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320630'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320630/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320704'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320704/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320707'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320707/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320711'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320711/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320714'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320714/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320718'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320718/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320721'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320721/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320725'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320725/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320728'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320728/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320801'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320801/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320804'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320804/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320808'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320808/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320811'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320811/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320815'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320815/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320818'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320818/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320822'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320822/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320825'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320825/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320829'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320829/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320901'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320901/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320905'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320905/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320908'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320908/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320912'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320912/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320915'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320915/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320919'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320919/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320922'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320922/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320926'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320926/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18320929'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18320929/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18321003'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18321003/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18321006'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18321006/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18321010'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18321010/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18321013'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18321013/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18321017'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18321017/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18321020'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18321020/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18321024'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18321024/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18321027'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18321027/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18321031'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18321031/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18321103'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18321103/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18321107'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18321107/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18321110'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18321110/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18321114'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18321114/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18321117'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18321117/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18321121'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18321121/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18321124'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18321124/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18321128'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18321128/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18321201'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18321201/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18321205'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18321205/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18321208'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18321208/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18321212'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18321212/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18321215'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18321215/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18321219'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18321219/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18321222'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18321222/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18321226'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18321226/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18321229'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18321229/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330102'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330102/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330105'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330105/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330109'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330109/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330112'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330112/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330116'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330116/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330119'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330119/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330123'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330123/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330126'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330126/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330130'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330130/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330202'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330202/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330206'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330206/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330209'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330209/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330213'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330213/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330216'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330216/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330220'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330220/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330223'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330223/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330227'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330227/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330302'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330302/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330306'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330306/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330309'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330309/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330313'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330313/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/wmw1851ag0001'}, 'title': {'type': 'literal', 'value': 'Wiener Medizinische Wochenschrift'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/wmw1851ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/wmw1852ag0001'}, 'title': {'type': 'literal', 'value': 'Wiener Medizinische Wochenschrift'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/wmw1852ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/wmw1853ag0001'}, 'title': {'type': 'literal', 'value': 'Wiener Medizinische Wochenschrift'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/wmw1853ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/wmw1854ag0001'}, 'title': {'type': 'literal', 'value': 'Wiener Medizinische Wochenschrift'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/wmw1854ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/wmw1855ag0001'}, 'title': {'type': 'literal', 'value': 'Wiener Medizinische Wochenschrift'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/wmw1855ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/wmw1856ag0001'}, 'title': {'type': 'literal', 'value': 'Wiener Medizinische Wochenschrift'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/wmw1856ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/wmw1857ag0001'}, 'title': {'type': 'literal', 'value': 'Wiener Medizinische Wochenschrift'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/wmw1857ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/wmw1858ag0001'}, 'title': {'type': 'literal', 'value': 'Wiener Medizinische Wochenschrift'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/wmw1858ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/wmw1859ag0001'}, 'title': {'type': 'literal', 'value': 'Wiener Medizinische Wochenschrift'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/wmw1859ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/wmw1860ag0001'}, 'title': {'type': 'literal', 'value': 'Wiener Medizinische Wochenschrift'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/wmw1860ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/wmw1861ag0001'}, 'title': {'type': 'literal', 'value': 'Wiener Medizinische Wochenschrift'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/wmw1861ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/wmw1862ag0001'}, 'title': {'type': 'literal', 'value': 'Wiener Medizinische Wochenschrift'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/wmw1862ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/wmw1863ag0001'}, 'title': {'type': 'literal', 'value': 'Wiener Medizinische Wochenschrift'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/wmw1863ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/wmw1864ag0001'}, 'title': {'type': 'literal', 'value': 'Wiener Medizinische Wochenschrift'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/wmw1864ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/wmw1865ag0001'}, 'title': {'type': 'literal', 'value': 'Wiener Medizinische Wochenschrift'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/wmw1865ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/wmw1866ag0001'}, 'title': {'type': 'literal', 'value': 'Wiener Medizinische Wochenschrift'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/wmw1866ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/wmw1867ag0001'}, 'title': {'type': 'literal', 'value': 'Wiener Medizinische Wochenschrift'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/wmw1867ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/wmw1868ag0001'}, 'title': {'type': 'literal', 'value': 'Wiener Medizinische Wochenschrift'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/wmw1868ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/wmw1869ag0001'}, 'title': {'type': 'literal', 'value': 'Wiener Medizinische Wochenschrift'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/wmw1869ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/wmw1870ag0001'}, 'title': {'type': 'literal', 'value': 'Wiener Medizinische Wochenschrift'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/wmw1870ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/wmw1871ag0001'}, 'title': {'type': 'literal', 'value': 'Wiener Medizinische Wochenschrift'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/wmw1871ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/wmw1872ag0001'}, 'title': {'type': 'literal', 'value': 'Wiener Medizinische Wochenschrift'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/wmw1872ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/wmw1873ag0001'}, 'title': {'type': 'literal', 'value': 'Wiener Medizinische Wochenschrift'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/wmw1873ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/wmw1874ag0001'}, 'title': {'type': 'literal', 'value': 'Wiener Medizinische Wochenschrift'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/wmw1874ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/wmw1875ag0001'}, 'title': {'type': 'literal', 'value': 'Wiener Medizinische Wochenschrift'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/wmw1875ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/wmw1876ag0001'}, 'title': {'type': 'literal', 'value': 'Wiener Medizinische Wochenschrift'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/wmw1876ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/wmw1877ag0001'}, 'title': {'type': 'literal', 'value': 'Wiener Medizinische Wochenschrift'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/wmw1877ag0001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330316'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330316/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330320'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330320/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330323'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330323/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330327'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330327/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330330'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330330/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330403'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330403/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330406'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330406/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330410'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330410/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330413'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330413/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330417'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330417/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330420'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330420/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330424'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330424/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330427'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330427/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330501'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330501/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330504'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330504/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330508'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330508/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330511'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330511/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330515'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330515/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330518'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330518/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330522'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330522/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330525'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330525/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330529'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330529/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330601'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330601/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330605'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330605/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330608'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330608/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330612'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330612/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330615'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330615/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330619'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330619/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330622'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330622/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330626'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330626/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330629'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330629/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330703'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330703/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330706'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330706/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330710'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330710/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330713'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330713/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330717'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330717/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330720'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330720/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330724'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330724/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330727'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330727/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330731'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330731/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330803'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330803/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330807'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330807/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330810'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330810/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330814'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330814/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330817'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330817/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330821'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330821/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330824'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330824/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330828'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330828/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330831'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330831/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330904'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330904/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330907'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330907/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330911'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330911/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330914'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330914/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330918'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330918/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330921'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330921/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330925'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330925/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18330928'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18330928/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18331002'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18331002/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18331005'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18331005/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18331009'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18331009/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18331012'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18331012/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18331016'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18331016/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18331019'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18331019/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18331023'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18331023/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18331026'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18331026/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18331030'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18331030/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18331102'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18331102/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18331106'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18331106/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18331109'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18331109/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18331113'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18331113/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18331116'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18331116/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18331120'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18331120/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18331123'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18331123/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18331127'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18331127/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18331130'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18331130/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18331204'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18331204/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18331207'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18331207/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18331211'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18331211/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18331214'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18331214/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18331218'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18331218/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18331221'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18331221/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18331225'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18331225/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18331228'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18331228/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340101'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340101/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340104'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340104/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340108'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340108/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340111'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340111/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340115'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340115/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340118'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340118/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340122'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340122/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340125'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340125/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340129'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340129/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340201'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340201/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340205'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340205/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340208'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340208/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340212'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340212/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340215'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340215/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340219'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340219/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340222'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340222/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18340226'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18340226/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400217'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400217/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400220'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400220/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400224'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400224/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400227'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400227/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400302'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400302/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400305'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400305/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400309'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400309/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400312'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400312/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400316'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400316/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400319'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400319/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400323'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400323/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400326'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400326/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400330'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400330/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400402'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400402/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400406'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400406/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400409'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400409/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400413'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400413/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400416'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400416/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400420'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400420/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400423'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400423/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400427'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400427/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400430'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400430/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400504'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400504/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400507'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400507/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400511'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400511/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400514'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400514/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400518'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400518/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400521'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400521/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400525'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400525/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400528'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400528/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400601'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400601/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400604'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400604/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400608'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400608/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400611'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400611/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400615'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400615/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400618'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400618/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400622'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400622/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400625'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400625/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400629'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400629/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400702'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400702/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400706'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400706/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400709'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400709/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400713'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400713/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400716'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400716/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400720'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400720/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400723'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400723/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400727'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400727/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400730'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400730/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400803'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400803/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400806'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400806/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400810'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400810/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400813'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400813/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400817'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400817/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400820'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400820/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400824'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400824/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400827'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400827/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400831'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400831/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400903'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400903/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400907'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400907/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400910'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400910/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400914'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400914/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400917'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400917/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400921'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400921/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400924'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400924/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18400928'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18400928/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18401001'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18401001/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18401005'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18401005/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18401008'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18401008/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18401012'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18401012/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18401015'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18401015/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18401019'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18401019/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18401022'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18401022/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18401026'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18401026/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18401029'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18401029/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18401102'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18401102/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18401105'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18401105/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18401109'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18401109/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18401112'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18401112/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18401116'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18401116/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18401119'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18401119/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18401123'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18401123/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18401126'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18401126/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18401130'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18401130/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18401203'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18401203/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18401207'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18401207/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18401210'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18401210/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18401214'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18401214/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18401217'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18401217/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18401221'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18401221/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18401224'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18401224/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18401228'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18401228/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18401231'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18401231/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370403'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370403/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370406'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370406/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370410'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370410/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370413'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370413/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370417'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370417/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370420'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370420/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370424'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370424/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370427'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370427/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370501'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370501/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370504'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370504/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370508'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370508/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370511'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370511/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370515'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370515/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370518'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370518/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370522'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370522/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370525'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370525/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370529'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370529/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370601'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370601/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370605'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370605/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370608'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370608/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370612'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370612/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370615'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370615/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370619'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370619/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370622'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370622/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370626'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370626/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370629'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370629/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370703'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370703/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370706'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370706/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370710'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370710/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370713'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370713/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370717'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370717/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370720'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370720/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370724'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370724/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370727'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370727/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370731'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370731/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370803'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370803/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370807'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370807/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370810'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370810/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370814'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370814/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370817'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370817/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370821'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370821/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370824'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370824/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370828'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370828/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370831'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370831/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370904'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370904/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370907'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370907/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370911'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370911/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370914'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370914/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370918'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370918/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370921'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370921/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370925'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370925/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18370928'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18370928/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18371002'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18371002/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18371005'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18371005/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18371009'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18371009/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18371012'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18371012/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18371016'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18371016/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18371019'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18371019/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18371023'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18371023/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18371026'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18371026/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18371030'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18371030/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18371102'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18371102/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18371106'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18371106/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18371109'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18371109/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18371113'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18371113/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18371116'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18371116/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18371120'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18371120/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18371123'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18371123/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18371127'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18371127/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18371130'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18371130/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18371204'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18371204/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18371207'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18371207/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18371211'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18371211/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18371214'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18371214/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18371218'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18371218/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18371221'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18371221/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18371225'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18371225/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18371228'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18371228/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380101'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380101/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380104'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380104/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380108'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380108/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380111'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380111/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380115'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380115/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380118'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380118/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380122'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380122/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380125'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380125/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380129'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380129/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380201'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380201/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380205'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380205/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380208'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380208/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380212'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380212/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380215'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380215/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380219'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380219/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380222'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380222/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380226'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380226/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380301'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380301/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380305'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380305/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380308'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380308/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380312'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380312/manifest'}}, {'subjectURI': {'type': 'uri', 'value': 'http://data.onb.ac.at/ANNO/pog18380315'}, 'title': {'type': 'literal', 'value': 'Populäre österreichische Gesundheits-Zeitung'}, 'manifest': {'type': 'uri', 'value': 'http://iiif.onb.ac.at/presentation/ANNO/pog18380315/manifest'}}]}}
+
+
+
+ +
+ +
Out[8]:
+ + + + +
+
1100
+
+ +
+ +
+
+ +
+
+
+
In [ ]:
+
+
+
 
+
+ +
+
+
+ +
+
+
+ + + + + + -- GitLab