From 16ee3069a2d22329f61537522ec68136d60fc1e8 Mon Sep 17 00:00:00 2001 From: Georg Petz Date: Thu, 18 Apr 2019 15:32:18 +0200 Subject: [PATCH] Notebook Updates --- 2 - Metadata and Catalogue.ipynb | 150 +++++++++++++++++++++++++++++-- 2.1 SRU.ipynb | 84 +++++++++++++++++ 2.3 SPARQL.ipynb | 144 +++++++++++++++++++++++++++++ requirements.txt | 2 + 4 files changed, 375 insertions(+), 5 deletions(-) create mode 100644 2.1 SRU.ipynb create mode 100644 2.3 SPARQL.ipynb diff --git a/2 - Metadata and Catalogue.ipynb b/2 - Metadata and Catalogue.ipynb index c0682e1..21eb213 100644 --- a/2 - Metadata and Catalogue.ipynb +++ b/2 - Metadata and Catalogue.ipynb @@ -140,6 +140,31 @@ "![simpledc xml schema](./media/simpledc.png)\n" ] }, + { + "cell_type": "markdown", + "metadata": { + "slideshow": { + "slide_type": "subslide" + } + }, + "source": [ + "* DCMES and DCMI Metadata Terms [http://www.dublincore.org/specifications/dublin-core/dcmi-terms/](http://www.dublincore.org/specifications/dublin-core/dcmi-terms/) within JSON-LD\n", + "\n", + "```javascript\n", + "{\n", + "...\n", + " \"publisher\": \"Arn. Giull. de Brocario\",\n", + " \"place_of_publication\": \"Compluti\",\n", + " \"language\": \"http://id.loc.gov/vocabulary/iso639-2/mul\",\n", + " \"@id\": \"https://open-na.hosted.exlibrisgroup.com/alma/43ACC_ONB/bibs/990028618530603338\",\n", + " \"title\": \"Biblia polyglotta\",\n", + " \"@context\": \"https://open-na.hosted.exlibrisgroup.com/alma/contexts/bib\"\n", + "}\n", + "```\n", + "\n", + "* [https://open-na.hosted.exlibrisgroup.com/alma/contexts/bib](https://open-na.hosted.exlibrisgroup.com/alma/contexts/bib)" + ] + }, { "cell_type": "markdown", "metadata": { @@ -171,17 +196,132 @@ "slide_type": "subslide" } }, + "source": [ + "* SRU\n", + " * SRU (Search/Retrieve via URL) permits targeted searches within the Catalogue based on well established internet standards.\n", + " * [https://developers.exlibrisgroup.com/alma/integrations/SRU/](https://developers.exlibrisgroup.com/alma/integrations/SRU/)\n", + " * [http://www.loc.gov/standards/sru/](http://www.loc.gov/standards/sru/)\n", + " * based on CQL (Contextual Query Language) to search within the catalogue\n", + " * for retrieval of a bibliographic record the Barcode or Metadata Management System ID (MMS-ID) is used\n", + " * CQL query\n", + " * alma.mms_id=990055772160603338 ([https://obv-at-oenb.alma.exlibrisgroup.com/view/sru/43ACC_ONB?version=1.2&query=alma.mms_id=990055772160603338&startRecord=0&maximumRecords=1&operation=searchRetrieve&recordSchema=marcxml](https://obv-at-oenb.alma.exlibrisgroup.com/view/sru/43ACC_ONB?version=1.2&query=alma.mms_id=990055772160603338&startRecord=0&maximumRecords=1&operation=searchRetrieve&recordSchema=marcxml))\n", + " " + ] + }, + { + "cell_type": "markdown", + "metadata": { + "slideshow": { + "slide_type": "subslide" + } + }, + "source": [ + "* CQL query\n", + " * alma.title=transzendental ([https://obv-at-oenb.alma.exlibrisgroup.com/view/sru/43ACC_ONB?version=1.2&query=alma.title=transzendental&startRecord=0&maximumRecords=5&operation=searchRetrieve&recordSchema=dc](https://obv-at-oenb.alma.exlibrisgroup.com/view/sru/43ACC_ONB?version=1.2&query=alma.title=transzendental&startRecord=0&maximumRecords=5&operation=searchRetrieve&recordSchema=dc))\n", + " * alma.barcode=%2BZ199052304 ([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](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))\n", + " * alma.mmsid=990034300920603338%20or%20alma.mmsid=990028618530603338 ([https://obv-at-oenb.alma.exlibrisgroup.com/view/sru/43ACC_ONB?version=1.2&query=alma.mms_id=990034300920603338%20or%20alma.mms_id=990028618530603338&startRecord=1&maximumRecords=5&operation=searchRetrieve&recordSchema=dc](https://obv-at-oenb.alma.exlibrisgroup.com/view/sru/43ACC_ONB?version=1.2&query=alma.mms_id=990034300920603338%20or%20alma.mms_id=990028618530603338&startRecord=1&maximumRecords=5&operation=searchRetrieve&recordSchema=dc))" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, "source": [ "* OAI-PMH\n", - "* SRU" + " * OAI-PMH (Open Archives Initiative Protocol for Metadata Harvesting) is used for metadata harvesting\n", + " * 6 verbs\n", + " * GetRecord – Used to retrieve an individual metadata record.\n", + " * Identify – Used to retrieve repository information (ex. name, version).\n", + " * ListIdentifiers – Used to retrieve only headers.\n", + " * ListMetadataFormats – Used to retrieve the available metadata formats.\n", + " * ListRecords – Used to retrieve actual item metadata records.\n", + " * ListSets – Used to retrieve the set structure of a repository\n", + "\n", + " \n", + " " ] }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] + "execution_count": 1, + "metadata": { + "slideshow": { + "slide_type": "slide" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "setSpec value for selective harvesting: PAPYRUSDC\n", + "Name of the set (setName): Papyri records in DC simple\n", + "\n", + "setSpec value for selective harvesting: FULLMARC\n", + "Name of the set (setName): Complete set of ONB records in MARC\n", + "\n", + "setSpec value for selective harvesting: HANNAMARC\n", + "Name of the set (setName): HANNA records in MARC\n", + "\n", + "setSpec value for selective harvesting: ESPERANTOMARC\n", + "Name of the set (setName): Esperanto records in MARC\n", + "\n", + "setSpec value for selective harvesting: ESPERANTODC\n", + "Name of the set (setName): Esperanto Records in DC simple\n", + "\n", + "setSpec value for selective harvesting: PAPYRUSMARC\n", + "Name of the set (setName): Papyri records in MARC\n", + "\n", + "setSpec value for selective harvesting: HANNADC\n", + "Name of the set (setName): HANNA records in DC simple\n", + "\n", + "setSpec value for selective harvesting: ABODC\n", + "Name of the set (setName): Austrian Books Online in DC simple\n", + "\n", + "setSpec value for selective harvesting: ARIADNEDC\n", + "Name of the set (setName): Ariadne records in DC simple\n", + "\n", + "setSpec value for selective harvesting: ARIADNEMARC\n", + "Name of the set (setName): Ariadne records in MARC\n", + "\n", + "setSpec value for selective harvesting: MAPMARC\n", + "Name of the set (setName): Maps and Globes records in MARC\n", + "\n", + "setSpec value for selective harvesting: FULLDC\n", + "Name of the set (setName): Complete set of ONB records in DC simple\n", + "\n", + "setSpec value for selective harvesting: MAPDC\n", + "Name of the set (setName): Maps and Globes records in DC simple\n", + "\n", + "setSpec value for selective harvesting: ABOMARC\n", + "Name of the set (setName): Austrian Books Online in MARC\n", + "\n", + "setSpec value for selective harvesting: OAIBIBLIOA\n", + "Name of the set (setName): Austrian Bibliography A\n", + "\n", + "setSpec value for selective harvesting: MUSHANDC\n", + "Name of the set (setName): Musikhandschriften in DC\n", + "\n", + "setSpec value for selective harvesting: MUSHANMARC\n", + "Name of the set (setName): Music Manuscripts\n", + "\n", + "setSpec value for selective harvesting: CERLMARC\n", + "Name of the set (setName): Old prints and manuscripts for CERL portal\n", + "\n" + ] + } + ], + "source": [ + "from sickle import Sickle\n", + "sickle = Sickle('https://eu02.alma.exlibrisgroup.com/view/oai/43ACC_ONB/request')\n", + "oai_sets = sickle.ListSets()\n", + "for oai_set in oai_sets:\n", + " print('setSpec value for selective harvesting: ' + oai_set.setSpec)\n", + " print('Name of the set (setName): ' + oai_set.setName + '\\n')" + ] } ], "metadata": { diff --git a/2.1 SRU.ipynb b/2.1 SRU.ipynb new file mode 100644 index 0000000..844d16d --- /dev/null +++ b/2.1 SRU.ipynb @@ -0,0 +1,84 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "from lxml import etree\n", + "import requests\n", + "import pandas as pd" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "def getDCDataMMS(mms_id):\n", + " cont=requests.get('https://obv-at-oenb.alma.exlibrisgroup.com/view/sru/43ACC_ONB?version=1.2&query=alma.mms_id=' \n", + " + mms_id + '&startRecord=0&maximumRecords=1&operation=searchRetrieve&recordSchema=dc').content\n", + " e = etree.XML(cont)\n", + " namespaces = {\n", + " 'srw': 'http://www.loc.gov/zing/srw/',\n", + " 'srw_dc': 'info:srw/schema/1/dc-schema',\n", + " 'dc': 'http://purl.org/dc/elements/1.1/'\n", + " }\n", + " xpath = '/srw:searchRetrieveResponse/srw:records/srw:record/srw:recordData/srw_dc:dc/dc:{}/text()'\n", + " \n", + " titleResult = e.xpath(xpath.format('title'), namespaces=namespaces)\n", + " title = \"; \".join(titleResult) if titleResult else ''\n", + " \n", + " contributorResult = e.xpath(xpath.format('contributor'), namespaces=namespaces)\n", + " contributor = \"; \".join(contributorResult) if contributorResult else ''\n", + " \n", + " dateResult = e.xpath(xpath.format('date'), namespaces=namespaces)\n", + " date = \"; \".join(dateResult) if dateResult else ''\n", + " return [title, contributor, date]" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Sammlung der besten Reisebeschreibungen', '', '1784']" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "getDCDataMMS(str(990048102650603338))" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "pydays19", + "language": "python", + "name": "pydays19" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/2.3 SPARQL.ipynb b/2.3 SPARQL.ipynb new file mode 100644 index 0000000..bfd0600 --- /dev/null +++ b/2.3 SPARQL.ipynb @@ -0,0 +1,144 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We are going to use https://rdflib.github.io/sparqlwrapper/ to find newspapers with the subject heading \"Medizin\"." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "import requests\n", + "import pandas as pd\n", + "from SPARQLWrapper import SPARQLWrapper, JSON" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Set the SPARQL-Endpoint for ANNO (http://anno.onb.ac.at/) the newspaper portal of the Austrian National Library." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "anno_lod_endpoint = \"https://lod.onb.ac.at/sparql/anno\"" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "def get_sparql_result(service, query):\n", + " sparql = SPARQLWrapper(service)\n", + " sparql.setQuery(query)\n", + " sparql.setReturnFormat(JSON)\n", + " return sparql.query()\n", + "\n", + "def get_sparql_dataframe(service, query):\n", + " result = get_sparql_result(service, query)\n", + "\n", + " processed_results = result.convert()\n", + " #get the headings for each column of the SPARQL result\n", + " cols = processed_results['head']['vars']\n", + "\n", + " out = []\n", + " #get all lines of the SPARQL result\n", + " for row in processed_results['results']['bindings']:\n", + " item = []\n", + " for c in cols:\n", + " item.append(row.get(c, {}).get('value'))\n", + " out.append(item)\n", + "\n", + " return pd.DataFrame(out, columns=cols)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "query = '''\n", + "PREFIX dc: \n", + "PREFIX edm: \n", + "PREFIX dcterms: \n", + "SELECT ?title ?subjectURI ?manifest \n", + "WHERE {?subjectURI dc:subject .\n", + " ?subjectURI dc:title ?title .\n", + " ?subjectURI edm:isShownBy ?firstpage .\n", + " ?subjectURI edm:rights .\n", + " ?firstpage dcterms:isReferencedBy ?manifest\n", + "}'''" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'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'}}]}}\n" + ] + }, + { + "data": { + "text/plain": [ + "1100" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df = get_sparql_dataframe(anno_lod_endpoint, query)\n", + "manifests = list(df['manifest'])\n", + "len (manifests)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "pydays19", + "language": "python", + "name": "pydays19" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/requirements.txt b/requirements.txt index 33dfe11..bc71e4f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,3 +3,5 @@ sickle lxml requests pyswagger +pandas +SPARQLWrapper \ No newline at end of file -- GitLab