diff --git a/.babelrc b/.babelrc new file mode 100644 index 00000000..69f50d59 --- /dev/null +++ b/.babelrc @@ -0,0 +1,3 @@ +{ + "presets": ["env"] +} \ No newline at end of file diff --git a/.gitignore b/.gitignore index 532915d8..23a3e658 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ tags /node_modules/ /coverage/ +/build/ \ No newline at end of file diff --git a/.jshintrc b/.jshintrc index c3a1ba30..2840e85b 100644 --- a/.jshintrc +++ b/.jshintrc @@ -8,5 +8,15 @@ "node": true, "trailing": true, "undef": true, - "unused": true + "unused": true, + "esversion": 6, + "browser": true, + "mocha": true, + "globals": { + "define": true, + "expect": true, + "assert": true, + "Diva": true + }, + "validthis": true } diff --git a/.travis.yml b/.travis.yml index 528b18a4..38e8d2af 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,10 @@ language: node_js -node_js: 5 # Can't update to 6 until gulp does not depend on vinyl-fs 0.3.0 -sudo: false +node_js: 10 +sudo: true + +cache: + directories: + - node_modules install: - npm install --no-spin @@ -10,9 +14,6 @@ script: - npm test notifications: -webhooks: - urls: - - https://webhooks.gitter.im/e/6885fd1dbe70aca78516 - on_success: change # options: [always|never|change] default: always - on_failure: always # options: [always|never|change] default: always - on_start: never # options: [always|never|change] default: always + email: false + slack: + secure: kTkyLd+WlJE/cm39pm9jAZ11+QA1JKl8/eiOtPc4hkqvucMrBZu6k8V+TBoqgahLeUj/nWSWxJJJYZcElB/eXFgDfPoEAm+zOM3EsCrOBnBY5HhpnlCp95dZAcRlPwuhmB8kYK6Yl8v/qzvofQjbf/Lmk62tvFtlk3+S5WKDXbY= diff --git a/AUTHORS b/AUTHORS index 94f45904..050839e1 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,3 +1,4 @@ + Authors of diva.js Wendy Liu (https://github.com/dellsystem) @@ -6,6 +7,7 @@ Andrew Horwitz (https://github.com/ahwitz) Laurent Pugin (https://github.com/lpugin) William Bain (https://github.com/wabain) Jérôme Parent-Lévesque (https://github.com/jeromepl) +Eric Liu (https://github.com/erichanliu) Project Coordinators: Andrew Hankinson (andrew.hankinson[at]mail.mcgill.ca) @@ -18,4 +20,4 @@ Social Sciences and Humanities Research Council of Canada Répertoire International des Sources Musicale (RISM) Switzerland Canadian Foundation for Innovation Centre for Interdisciplinary Research in Music Media and Technology (CIRMMT) -Schulich School of Music, McGill University +Schulich School of Music, McGill University \ No newline at end of file diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 1765a34c..00000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -Diva.js - -Copyright (C) 2011-2016 by Wendy Liu, Evan Magoni, Andrew Horwitz, Andrew Hankinson, Laurent Pugin - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 00000000..1b520318 --- /dev/null +++ b/README.md @@ -0,0 +1,117 @@ +

+ + + +

+ +Diva.js [![Build Status](https://travis-ci.org/DDMAL/diva.js.svg?branch=master)](http://travis-ci.org/DDMAL/diva.js) +========================================= + +Diva.js (Document Image Viewer with AJAX) is a JavaScript book image viewer designed to present multi-page documents at multiple resolutions. + +Version 6.0 contains many new features and improvements: + +- **Compatibility with IIIF Presentation API version 2.1 and 3**. +- **Small footprint, zero dependencies**. Can be deployed with just a JavaScript and a CSS file. +- **Rewritten in ES6** for compatibility with the new JavaScript module system. +- **New plugins**: Metadata, Image Manipulation + +## Overview + +There are two components to a functioning Diva system: + +1. **[A IIIF Manifest](https://iiif.io/)** that will be displayed. +2. **The Diva.js plugin.** The embedded web application that displays the images in a browser. + +### Details + +#### Using IIIF +Diva.js is an image viewer compatible with IIIF Presentation API versions [2](http://iiif.io/api/presentation/2.0/) and [3](http://iiif.io/api/presentation/3.0/). Simply supply the path to a valid IIIF Manifest and Diva will display the document as described by the metadata (see [Installing](#installing)). + +## Installing + +### From a CDN (hosted) + +If you prefer to use a hosted version of Diva, copy and paste the following into the `` of any webpage to include all the files necessary to use Diva.js. +```html + + +``` +### Locally (release package) + +Download the [latest release](https://github.com/DDMAL/diva.js/releases) of Diva. In the `diva.js` directory you can find a pre-compiled version. The `build` directory contains the files necessary to use Diva. Simply include `build/diva.css` and `build/diva.js` in the `` of your webpage, as shown in the HTML source of the example [index page](https://github.com/DDMAL/diva.js/blob/develop/index.html). + +### From npm + +You can also run `npm install diva.js` in order to install Diva as a node package. Then, Diva will be located under `node_modules/diva.js/`, and you can access the `build` directory the same as above. + +## Basic setup +### HTML +After including the necessary files, the most basic Diva viewer is instantiated with one (IIIF) required parameter and several optional settings parameters. Diva must target a parent div, in this case diva-wrapper: +```html +
+ + +``` + * `objectData`: The URL (absolute or relative) to the document's `.json` file, or a IIIF Manifest + +The `diva-wrapper` selector points to a `div` element within which the document viewer will appear. + +### JavaScript +If you wish to include the Diva viewer component into your own JavaScript app, this can be done easily by just importing Diva beforehand. +```javascript +import Diva from './path/to/source/diva.js'; + +let diva = new Diva('diva-wrapper', { + objectData: "http://www.example.com/manifest.json" + // possible settings +}); +``` + +There are a large number of settings that can be enabled/disabled for this Diva instance. See [Settings](https://github.com/DDMAL/diva.js/wiki/Settings) for a comprehensive list. + +See [Installation](https://github.com/DDMAL/diva.js/wiki/Installation) for full instructions. + +## Building from source + +If you wish to install from source, first you must install [node.js and npm](https://nodejs.org/en/). Then, check out the code from [our GitHub repository](http://github.com/DDMAL/diva.js). Once you've obtained the code, change to the project directory and run `npm install` to fetch all development dependencies. + +The full installation gives you access to the un-minified JavaScript source, the plugins, the documentation, and our unit-tests. + +```javascript +npm run develop // Runs a server at localhost:9001 and automatically builds and reloads upon changes +npm run build:develop // Compiles the Javascript and SASS source and places it in the build/ directory +npm run lint // Lints the Javascript source with JSHint +npm test // Runs the unit tests and outputs a report to the console +npm run build:production // Builds the release package +``` + +Run `npm run develop` and navigate to [http://localhost:9001](http://localhost:9001) in your web browser to see a basic Diva instance. + +See [Installation](https://github.com/DDMAL/diva.js/wiki/Installation) for more information. + +## Getting help + +Help for Diva.js is available through this repository's [wiki](https://github.com/DDMAL/diva.js/wiki), in the form of code documentation, installation instructions and usage tips. You can also [submit an issue](https://github.com/DDMAL/diva.js/issues)! + +## Cross-site Requests + +You may receive an error that looks something like this: + +``` +XMLHttpRequest cannot load http://example.com/demo/imagefiles.json. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:8000' is therefore not allowed access. +``` + +This is a security precaution that all browsers use to prevent cross-site request forgeries. If you receive this message it is because your `objectData` parameter and the server used to serve the Diva page are not at the same server address. + +To fix this you must ensure that the Diva HTML page, and the location pointed to by the `objectData` page are being served by the same server, or you must create an exception using the `Access-Control-Allow-Origin` header on your server to explicitly white-list the `objectData` location. + +Let Us Know +----------- + +We're developing Diva.js as part of our research in [Distributed Digital Music Libraries](http://ddmal.music.mcgill.ca). If you use it in your project, it would be great if you could [let us know](mailto:andrew.hankinson@mail.mcgill.ca). \ No newline at end of file diff --git a/audit-diva-css-classes.js b/audit-diva-css-classes.js deleted file mode 100644 index 72f337ca..00000000 --- a/audit-diva-css-classes.js +++ /dev/null @@ -1,25 +0,0 @@ -// FIXME: Would be better to use a real linter like stylelint - -var postcss = require('postcss'); - -// Try to match unprefixed classes, ids, attribute rules -var UNPREFIXED = (/([.\#\[])(?!diva-)/); - -module.exports = postcss.plugin('audit-diva-css', function () -{ - return function (css, result) - { - css.walkRules(UNPREFIXED, function (rule) - { - rule.selectors.filter(function (group) - { - return UNPREFIXED.test(group); - }).forEach(function (problem) - { - rule.warn(result, 'Unprefixed selector ' + problem, { - word: problem - }); - }); - }); - }; -}); diff --git a/build/css/diva.css b/build/css/diva.css deleted file mode 100644 index 04baa390..00000000 --- a/build/css/diva.css +++ /dev/null @@ -1,633 +0,0 @@ -.diva-wrapper { - min-height: 100%; - width: 100%; - -ms-flex-positive: 1; - flex-grow: 1; -} -.diva-wrapper.diva-wrapper-flexbox { - display: -ms-flexbox; - display: flex; - -ms-flex-direction: column; - flex-direction: column; -} -.diva-wrapper > *:not(.diva-outer) { - -ms-flex-negative: 0; - flex-shrink: 0; -} -.diva-title { - text-align: center; - font-weight: bold; - font-size: 1.3em; - max-width: 50em; - margin: 0 auto; -} -.diva-button, -.diva-input { - box-sizing: border-box; - outline: none; - border-radius: 0; - font: inherit; - vertical-align: middle; -} -.diva-button::-moz-focus-inner, -.diva-input::-moz-focus-inner { - padding: 0; -} -.diva-button { - display: inline-block; - cursor: pointer; - height: 34px; - width: 34px; - line-height: 34px; - -webkit-appearance: none; - padding: 0; - background-color: #F1F1F1; - background-repeat: no-repeat; - background-position: center; - border: 1px solid #AAA; -} -.diva-button:hover, -.diva-button:focus { - background-color: #FDFDFD; -} -.diva-button.diva-button-text { - width: auto; - padding: 0 0.5em; -} -.diva-input { - height: 34px; - border: 1px solid #AAA; - padding: 0 0.5em; -} -.diva-input:focus { - border-color: #919191; -} -.diva-label { - margin: 0 1em; - line-height: 34px; - vertical-align: top; - white-space: nowrap; -} -.diva-tools-left, -.diva-tools-right { - margin-bottom: 1em; -} -.diva-tools-left { - float: left; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.diva-zoom-out-button, -.diva-grid-out-button { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAIklEQVR42mNgGAWjYBQQB3x9ff9TgkcNJmzwKBgFowAVAACElnmBtJelAAAAAABJRU5ErkJggg=="); -} -.diva-zoom-in-button, -.diva-grid-in-button { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAKElEQVR42mNgGAWkAF9f3//IeNTgkWQwugGk4lGDqRf2o+l41OCRAgDiStSheMjqggAAAABJRU5ErkJggg=="); - margin-left: -1px; -} -.diva-tools-right { - float: right; -} -.diva-tools-right .diva-button { - margin-left: -1px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.diva-page-nav { - white-space: nowrap; - margin-right: 1em; -} -.diva-goto-form { - display: inline-block; - position: relative; -} -.diva-goto-page-input { - width: 5em; -} -.diva-input-suggestions { - display: none; - box-sizing: border-box; - position: absolute; - width: 100%; - background-color: white; - border: solid 1px #aaa; - border-top: none; - z-index: 1; -} -.diva-input-suggestion { - box-sizing: border-box; - width: 100%; - margin-top: 3px; - padding: 2px; - padding-left: 5px; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - cursor: pointer; -} -.diva-input-suggestion.active, -.diva-input-suggestion:hover { - background-color: #dfefff; -} -.diva-fullscreen-icon { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAAgRJREFUeNq8VrGuokAUPaOEarcwMfrgIyxMLAx/YKGNtRWFfgGJJohWWmmpITbWNvoPtBZ+g4GHITEGtyHobLO4iMAbfS/ebkjmHO655947hFKKdwShlKJeryeybTYbQghJBWHByOBNwUWZXwWKuxvOkmMB+Yk6xhIl6V0ulz8Hg4EAALIsW7Ztf7Bmx1yjRqMBTdMESikopdB1XZAkiTkjZiLHce7OnudlXNd9zt6s0kmSBEVRiO/7RNO06263YzYGBwDhPgkTi6II0zRvZ8MwMB6PKQBESQRBgGVZ/zOIYCZK12w2MZvNSKVSuftuGAYMw3jIdD6fk1qt9lyNisWi2Wq1CAAoipItlUqJAIGcANBut0m1Wv2TWKNomoSQOwnP5/OvTqfjnk6nu8u5XA66rmd5nr+GJYvD/NJ1nudlRqPRAwkAHI9HTCaTy8v2lmXZAgDf98lwOLwkuStqEADo9/sW82SwbftjsVhQx3Ee3BU0adgQAVk+n8d2u2UfQQCwXq9T+8h13bs+ijoxVrpgrKQNz7C7OI6jqqqmujGKmQkmQdriEkXxRhIEz/NXVVWzhUIhkSyMyzTrTNPEcrl8+JHpdHo5HA6vr4m4WK1W2O/3bq/X+/3PmaZt29/bR2mbttvt3hT99uJ7GB8Mj5OniOIMwfqOSDPTU4vvR95174i/AwDgSxraLsuBgwAAAABJRU5ErkJggg=="); -} -.diva-toggle-nonpaged-icon { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4AgTEBEfaruPBwAAAKNJREFUSMfdVcENgCAMbI0zdQGWghfw6lQswFL40lQkoiKReD/aArnrFTClBGcwxjgAsHk8xohyTUSlg/wEdVh4DjtBZ8x3ipkZT9IoZN3k6s7ge4lyt1yB3NOdAWqtXYMVPTO7PKiU2vWgyeev2vQq5FTPNZ9LuiGEg8/Ht2mJDRGVYukTBr0v8FWJ1sZmf0Qpj7+U6G/P9Z0JHUoi3+LzWsECD3Iw40bs39cAAAAASUVORK5CYII="); -} -.diva-toggle-nonpaged-icon-active { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4AgQERwL1rjg7gAAAJRJREFUSMfdVFsOgCAM24wng4PBDtaz4ZcJmvESUbR/sIXSrRuHECgHa60nIqeE+HTWHhKuIEgl1BDQQoOxtiQD4EyYNdXDFUxRIr7wLj+mgI0xKZ/XQAB4xdqHHriOD7pbbdqAoBJoPo/lAihN9+STHKtR7t7ZRaMJpFiivbGlxqcm/vvL7mfrumVCpyqR9Pi8lLABZfMqIZXz4SkAAAAASUVORK5CYII="); -} -.diva-view-menu { - display: inline-block; - position: relative; -} -.diva-view-options { - position: absolute; - top: 34px; - z-index: 1; - display: none; - box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1); -} -.diva-view-options .diva-button { - margin-top: -1px; - display: block; -} -.diva-document-icon { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAYCAYAAADOMhxqAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAAsSURBVDiNY/T19f3PQAJgIkUxAwMDA+P//yRZQIYNNPfDqIZRDUNHw3DIcQDkTQvYVGzS1gAAAABJRU5ErkJggg=="); -} -.diva-grid-icon { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAABfSURBVDiNY/T19X3AwMAgz4AKHm7atEmBgYGBwc/Pjyx5JiyCDGhiZMkzYRGkChiaBj/EIv4QB5toecb///9T4jCcgGZBwTiajmFgaBo8mo4ZGBhG0zESGJoG0yQdAwD6QT53wkiu4gAAAABJRU5ErkJggg=="); -} -.diva-book-icon { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADtJREFUeNpi/P//PwMtABMDjQDNDGbx8/MjKiw2bdrECKKJVT/0gmLU4FGDRw0eNXhADWYcrZpgACDAAPfJDBBti7cPAAAAAElFTkSuQmCC"); -} -.diva-link-icon { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAXCAYAAAALHW+jAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAANFSURBVDiNjZRPaBx1FMc/b3banUgVQQ8boUURoSIWE8GCYINtDjUwv91Esxdb8F9NDlURclAohsWDglQRjHVFbKuguLKSnclqKigqBS9uFKSCiTRYCxGxejC4m+z+5nlwpo6bjeZ3+r3v+77PvPdmGFFVtnoKhcLeKIqeA24DLqlqva+v71ilUllNPLJVoO/7R0TkBJDpSi1FUXRwbm7u/JaB+Xz+kKqeBpxNLD86jnPX7OzsT/8LNMbcC7yX6uxrx3GOqupuVX0F6AMQkW9yudwd/wk0xtwDzALbY+nc+vr6vvn5+d8AfN8fEZFZYFucf2qzETDGDAHVBCYii9ba4QQGEIbhh8BUquy+nsB8Pj8AhMk4wHK73T5Qr9d/7vZ6nnc6Fd68ATgxMbFNVU8BV8adXcxkMvuz2exqPp9/tlgs/ustN5vNYiq8sAG4srIyDOyJw1+jKNofRdEla+28qh5rtVonS6WSA+D7/qiIvJrUisi7vUbenbq/HYbhEnAI2BtrhxcWFl6Tv88A4MawRi6Xe34DUEQupsI7RURqtdoJEZlJRFU9YoyZFJEXgF+A71T1YLlcbl/+bMbGxq6x1u7JZDLnOp3OMnBFXP96GIaT8YhvAg/E+qrrutdba4dc1/2yWq2uQPzlj4yMXGWtPaOqp1zX/UNEnkl1+ajv+y+rqnqe9wjwbazvsNYO1Wq1DxIYgFMqlRzXdUNVvR3Ytba2NjU4OPiSiLyVgj5mjHmyUqlYVf00pd/QvTKn0Wg8Duz7Zz26Mj09HWWz2YeA9+O9LorIO4VCYaeIjCfFURSd3wBM7QTg6SAI3gCoVCq2v7//fqDcbrcPdDodiaLoE+C62LssIme6gS5wY/JAz/Nm0slyudwGJo0x1wKfATfFqXXgwSAI/uzV4VJybzabY92G0dHRq4GPgVtiqQMUgyD4vNubAKtJICLlQqEwnMTFYnGHtfYjYCCZQkQOB0FQ6wUDkPHx8e2tVusr4NZYa6rqEyLSAF4EhmJdVfXhMAxPbgaD+I9tjNkFnAV2bmZU1aNhGM5slk+OAxAEwQVr7TDwQy+WiExtBXYZCFCv1xc9zxsAjgPfA78DXwB312q141uBAfwFPr5cDatao0oAAAAASUVORK5CYII="); -} -.diva-zoom-label, -.diva-grid-label, -.diva-page-label { - display: inline-block; -} -.diva-fullscreen-tools { - position: fixed; - top: 15px; - right: 30px; - z-index: 101; - padding: 15px; - border: 1px solid #DDD; - background: #FFF; - box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.5); - /* prevent variable number of digits in labels from resizing .diva-fullscreen-tools */ -} -.diva-fullscreen-tools .diva-tools-left, -.diva-fullscreen-tools .diva-tools-right { - margin-bottom: 0; -} -.diva-fullscreen-tools .diva-tools-right { - margin-left: 2em; -} -.diva-fullscreen-tools .diva-label, -.diva-fullscreen-tools .diva-page-label { - margin: 0; -} -.diva-fullscreen-tools .diva-zoom-label, -.diva-fullscreen-tools .diva-grid-label, -.diva-fullscreen-tools .diva-page-label { - width: 8em; - display: block; -} -.diva-fullscreen-tools .diva-page-nav { - margin-right: 0; -} -.diva-outer { - display: -ms-flexbox; - display: flex; - clear: both; - background: #F1F1F1; - border: 1px solid #AAA; - position: relative; - overflow: hidden; - min-height: 100px; - min-width: 200px; - height: 700px; - -ms-flex-positive: 1; - flex-grow: 1; -} -.diva-viewer-canvas { - position: absolute; - top: 0; - left: 0; -} -.diva-viewport { - position: absolute; - top: 0; - bottom: 0; - left: 0; - right: 0; - overflow: auto; -} -.diva-inner { - cursor: url("data:application/octet-stream;base64,AAACAAEAICACAAcABQAwAQAAFgAAACgAAAAgAAAAQAAAAAEAAQAAAAAAAAEAAAAAAAAAAAAAAgAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAfwAAAP+AAAH/gAAB/8AAA//AAAd/wAAGf+AAAH9gAADbYAAA2yAAAZsAAAGbAAAAGAAAAAAAAA//////////////////////////////////////////////////////////////////////////////////////gH///4B///8Af//+AD///AA///wAH//4AB//8AAf//AAD//5AA///gAP//4AD//8AF///AB///5A////5///8="), pointer; - position: relative; - overflow: hidden; - margin: 0 auto; -} -.diva-inner.diva-grabbing { - cursor: url("data:application/octet-stream;base64,AAACAAEAICACAAcABQAwAQAAFgAAACgAAAAgAAAAQAAAAAEAAQAAAAAAAAEAAAAAAAAAAAAAAgAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAfwAAAP+AAAH/gAAB/8AAAH/AAAB/wAAA/0AAANsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////////////////////////////////////////////////////////////////////////////////////gH///4B///8Af//+AD///AA///wAH//+AB///wAf//4AH//+AD///yT/////////////////////////////8="), move !important; -} -.diva-page { - box-shadow: 7px 7px 6px -6px rgba(0, 0, 0, 0.3); - position: absolute; - background-color: #FDFDFD; -} -.diva-page-tools-wrapper { - position: absolute; - z-index: 3; -} -.diva-page-tools { - position: relative; - top: -25px; - height: 25px; -} -.diva-page-tools div { - display: inline-block; - height: 25px; - width: 25px; - cursor: pointer; -} -.diva-fullscreen { - width: 100% !important; - max-width: 100% !important; - height: 100% !important; - max-height: 100% !important; - z-index: 100; - position: fixed !important; - top: 0; - left: 0; - margin: 0; - border: 0; -} -.diva-popup { - background: #FFF; - border: 1px solid #AAA; - padding: .6em; - z-index: 101; - position: absolute; - box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.5); -} -.diva-link-popup { - font-size: 10pt; -} -.diva-link-popup input { - width: 18em; -} -.diva-link-popup input:focus { - outline: none; -} -.diva-link-popup.in-fullscreen { - top: 150px; - right: 30px; -} -.diva-hide-scrollbar { - overflow: hidden !important; -} -.diva-slider { - position: relative; - top: 0.6em; - float: left; -} -@media (max-width: 480px) { - .diva-slider { - width: 100px; - } -} -.diva-throbber { - display: none; - position: absolute; - width: 50px; - height: 50px; - background: url("data:image/gif;base64,R0lGODlhEAAQAPIAAPHx8QAAALi4uD4+PgAAAFxcXHt7e4qKiiH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAADMwi63P4wyklrE2MIOggZnAdOmGYJRbExwroUmcG2LmDEwnHQLVsYOd2mBzkYDAdKa+dIAAAh+QQJCgAAACwAAAAAEAAQAAADNAi63P5OjCEgG4QMu7DmikRxQlFUYDEZIGBMRVsaqHwctXXf7WEYB4Ag1xjihkMZsiUkKhIAIfkECQoAAAAsAAAAABAAEAAAAzYIujIjK8pByJDMlFYvBoVjHA70GU7xSUJhmKtwHPAKzLO9HMaoKwJZ7Rf8AYPDDzKpZBqfvwQAIfkECQoAAAAsAAAAABAAEAAAAzMIumIlK8oyhpHsnFZfhYumCYUhDAQxRIdhHBGqRoKw0R8DYlJd8z0fMDgsGo/IpHI5TAAAIfkECQoAAAAsAAAAABAAEAAAAzIIunInK0rnZBTwGPNMgQwmdsNgXGJUlIWEuR5oWUIpz8pAEAMe6TwfwyYsGo/IpFKSAAAh+QQJCgAAACwAAAAAEAAQAAADMwi6IMKQORfjdOe82p4wGccc4CEuQradylesojEMBgsUc2G7sDX3lQGBMLAJibufbSlKAAAh+QQJCgAAACwAAAAAEAAQAAADMgi63P7wCRHZnFVdmgHu2nFwlWCI3WGc3TSWhUFGxTAUkGCbtgENBMJAEJsxgMLWzpEAACH5BAkKAAAALAAAAAAQABAAAAMyCLrc/jDKSatlQtScKdceCAjDII7HcQ4EMTCpyrCuUBjCYRgHVtqlAiB1YhiCnlsRkAAAOwAAAAAAAAAAAA==") no-repeat center; - background-color: #FFF; - border: 1px solid #DDD; - box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.5); - top: 50%; - left: 50%; - margin-left: -25px; - margin-top: -25px; -} -.diva-error { - position: absolute; - width: 400px; - height: 200px; - background-color: #fff; - border: 1px solid #ddd; - box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.5); - top: 50%; - left: 50%; - margin-left: -220px; - margin-top: -120px; - z-index: 120; - padding: 0 1em; -} -.diva-error-close { - width: 18px; - height: 18px; - border: none; - background: #fff url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAQVJREFUeNqslLEOgjAQhq+NkwnExAcSGE1gchBnH8tVXNycmIhvJBAGEhO8n7SJIqXFeMklbbl+vR5/T3RdR0mSLInozF7WdX0siuJJExaG4cLzvBMP123b7vM8b0Qcx4Dc2CMECSGuVVWlJhggvu9fOIGdWrqzb6XKJNKBCEAgNjhAYBv2DKByuGEMZoBoe4ggCIwB+poY22IEij11GgJ1liYI6tmDHFKnKQjmUn/AQp+iymAO5APkCjPJQ9KfTDroxCqND9CcYo/BpA2CmozVbAj7myD7V2wTm8o6ZdiXMDFnRoOrrV1+sUUaK4l+oloB2dqIAYa9B/HW2DK84l8b20uAAQCLjwLqt9305AAAAABJRU5ErkJggg=="); - position: absolute; - top: 1em; - right: 1em; -} -.diva-error-close:hover { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJFJREFUeNqslLEKwCAMREPpVP9/756hgnOhf5ZGuYIUSSxN4JZ4PKPRkIiQxqY6VLtqrTlL1QNvUSXkGuRUCcQWDBDu/BcYrRJ5aQgbQB5lQoniwQyIgGEaGOu+Z2I39iCNMVm6f/TJy3SbQR86Y3Z0oagIP1rIZYe0P+xBRn6REvVpE0bBvzHSDbb8Z7DdAgwARUeIgUWvd3IAAAAASUVORK5CYII="); - cursor: hand; -} -.diva-modal { - position: absolute; - width: 32em; - background-color: #fff; - border: 1px solid #ddd; - box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.5); - top: 50%; - left: 50%; - -ms-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); - z-index: 120; - padding: 2em 2.2em; -} -/* Begin canvas plugin */ -.diva-canvas-icon { - background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAATCAYAAAB/TkaLAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAatJREFUeNqMlD0vBVEQhnfX4SL2NiI+Cm5Dp5f4C26hUVBpCQqtSkLDr1CpdKKQkIheS0mHm3ARXHHPek8yE6/JWUzyZD/mzOy8c+ZsWq/XE9g02AedoAUm5BqsBs5AF3gAk+BTfBz3AcZDXCbOTIIK0AN88m2D5OuXaxKJ69Y4J04vlYUFb7JY7Y7uH0FKCS/BhiT1ks87WlApqTQx1aktg1XQJ/6QYwWcZP8IVkupykQS5OQLsSNg3v0mA7TNB/mjB2AO9JLae3ARgpfAWkwGWDcVcqXb4BCMSVzwXYFrJ33JyZGIjAVJWiV5jpI+gWewS++GtOQg45V2PFwb4FieK0Z+ByXJTXsqOlJWhvb4mkZKp6Ft+hzdXCcygu3Q+xqdKN7domQqfiRnySkFx4LSSMIsNnva+GYkid7fglmqhv1NefZcjKOdLCLVzIBN2RzdpKb8SErjnJFvG78IhuldWDNg5BdlPclL+nkk46b91nHjkcpsMVpptWRn98A5mKKROiV/9S/5PtLTlvx8t2jNqFHqrUpNGo7bu/xoXyKJb+S0NIyiaNyXAAMAV9J7QqwGuvAAAAAASUVORK5CYII=") no-repeat; -} -.diva-canvas-icon:hover { - background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAATCAYAAAB/TkaLAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAApVJREFUeNqEVMuKGkEUrW7bd3zEgGAkgmRQXPhYCKO7EZcB98GFCzchCeRD3BrIxh/wE2Q+YBZuBtyJDyQk0TCJj/Hdtjm3Uz1pZkpzoeiqOnXq3nPr3laOxyNLJpPFw+FwvdlsmMvlYjBnp9PZ0ATYBbAux5bY8gNTY7EYs9vtT3iYb2SaaZomr9drJkkSWywWzGq1auyfvSQSx9zAjrSZSCSEvFwux/RLZVnWnE4no6g9Hg/b7/eyceNyufxGJDJFUebT6VRflMtlBWc7mH6iAQcfQqGQrVAo2BRzpLhc9xgIBMyRCm0ymdzCeQLTIw+MQVF9NBpNlf+RjSgNIzJZrVYLWSwWCWuJq2CDwYD1+32f3Gw2hTIajYaNqxA6q1Qq916vV08ZmaqqLBwOs1KptFfOycAygEglIj6OOJvNFlut1uvZbPaKMDg/+ny+QSaTuZMikcgvyHhuJlF0uEgbDoeWdDp9OZ/Pb8gZ9pf4+nu9nlqtVlm73b7EG9wQF5FqUGjJ5/NMPieD1tvt1mbOJ87p74Ao6VGfmSpDGo/HDqSTKedk0GGk5rvxOLADzqg0QU0KH9HhcDA9X9FotIiNa45RyC5I1DsK2AWwLsfmGC9IPsee8DD+dhQ8yoZ8QUlJZzAhT78UJTUXgciPHAwGfwC7wvJqt9u9icfjD7k4xdOTvlqtfpvyZu6az8jpWzrCcyah3NyYes/xFEOGSB66Jo5y84HoM3eNWb6Ip2/iZ+IXdQ7K7aeo3Aw7xdMvRTl5HpcH75r3iDSD6UcaiPgdnMQM/BRP5rLAtRi1Jhl5QgPcgbgBVseyjnNfut3ug34Rj4aeU3i/x8se8O9kbrdbNQ5ybAvsK8cWBpZKpYQ8StUfAQYA90WC9GAOvOkAAAAASUVORK5CYII=") no-repeat; -} -.diva-canvas-icon.new { - background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAATCAYAAAB/TkaLAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAb9JREFUeNqElM0rRVEUxc+97/J8xktRJsxkwpBShgwMzVBShsyUgVI+/gEzU0bMFTOlpIwoExNhQpF6+S7utQ7rsJx3Hrt+9exz1j57nbuPaH7z0iAmwCKoBC+gCxTNV/SBDVDBXDf3ON0Cda9OF3Mx5kIKasCb+Yl2FrRR4B4jujzIQLXTJVxMeZIt/CR5GxcU2bhnIcO9B2BNatjCaeKdmOqJEpEUdjEHRkAddbbWINiPTWlEJhx+fhTU83eOhVvBcCI21tnNtw3wTFEWOGQHDHFvxsI34DgJ2Mg5G2CKHcZc0+Kr4Ai0Se4UnNmiY6BW7jZzNli0WezrBzwBHWBZ1ltckW1+cSP3cwt2+bez564mL3sbvbUGN1JqI+OJnzYoPBfbbvRC8X01CW30gEkWtMJOeVH/TUZJTl9ULJ36oqjMFMShvLv4uzKWcryKWQrfmTOeLvLtG85XGjh1hkOeyKuZBr2iK5nhRDoKPccBjonmCp6TSD7irztpkt96p4fgURzEHDcjuqhcpwXpRrtaAXugX7rZ8rr+034aOPWa739cnuqSZ79E54oW+d+8Suy6eABXfElFr7Og7kOAAQDbb3wSAOBcfAAAAABJRU5ErkJggg==") no-repeat; -} -.diva-canvas-icon.new:hover { - background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAATCAYAAAB/TkaLAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAa5JREFUeNqMlD8vRFEQxd977lrEakT8KdhKp5f4CCoaUesIEi2diAifQkOj3UqyBb1GQUmHTVgEK/Y95ybnxjG5Kyb55e2+uXPunbkzz83tXSawGXAMSqAFJvn0VgVn9D2CKfBFn487At0al9GZ0VGAXpAnPzZMQW+DXJNIXNnGOTr9n08Gv3NxsHsGpeCJzyB4Bbboz6mXO1kQTmNPqpbK7xWwBvop6jVWQT3rEBATK8w7L1Ax/lGw6CSNTSmF47NthFT4BCyAPr7vAg/gwgcvg/VYGmBDMrCZ7IIamJCaX4Mbx7pUTOCYT4OiA5JeSUSfwQs4ENGRcEE+jTfTJg1wyv9lST2kGawignlY6/5Kw7RUwhq3Ixf56xId0/C2L++rMlGJbPavztCJymK7Mijt4Mtiu4Tmb0YCguAdmJep0RM3Yxs6ucnYEMyCbV5O6N8mPyQhrrDl0THVWwy2xCkppHZDJv3C1jWT1ojVp8Z2S6WdGqalstjtJ2zwWE0PwTmYlpaqiz8ap+nnkbZp8ZO4I2vGTfq5TT+I+nH74ES8RoRv6WuYk4W4Ho37FmAALHt+CwITqggAAAAASUVORK5CYII=") no-repeat; -} -#diva-canvas-backdrop { - z-index: 105; - position: fixed; - top: 0; - left: 0; - bottom: 0; - right: 0; - display: none; - background: rgba(50, 50, 50, 0.9); -} -#diva-canvas-tools { - color: #333; - position: fixed; - top: 10px; - left: 10px; - width: 230px; - z-index: 108; - background: #FFF; - padding-bottom: 10px; - box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.5); -} -#diva-canvas-tools .action-buttons { - clear: both; - margin-bottom: 5px; - text-align: right; -} -#diva-canvas-tools .action-buttons a { - color: #333; - text-decoration: none; - background: #F1F1F1; - padding: 5px; - border: 1px solid #AAA; -} -#diva-canvas-tools .action-buttons a:last-child { - border-left: 0; -} -#diva-canvas-tools .action-buttons a:hover { - background: #FDFDFD; -} -#diva-canvas-toolbar { - height: 16px; - padding: 10px; - padding-bottom: 0; -} -#diva-canvas-toolbar div { - height: 18px; - width: 18px; - background-repeat: no-repeat; - cursor: pointer; - z-index: 109; - display: inline-block; - margin-right: 5px; -} -#diva-canvas-toolbar span { - vertical-align: top; - float: right; -} -#diva-canvas-toolwindow { - position: relative; - margin: 10px; -} -#diva-canvas-close { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAQVJREFUeNqslLEOgjAQhq+NkwnExAcSGE1gchBnH8tVXNycmIhvJBAGEhO8n7SJIqXFeMklbbl+vR5/T3RdR0mSLInozF7WdX0siuJJExaG4cLzvBMP123b7vM8b0Qcx4Dc2CMECSGuVVWlJhggvu9fOIGdWrqzb6XKJNKBCEAgNjhAYBv2DKByuGEMZoBoe4ggCIwB+poY22IEij11GgJ1liYI6tmDHFKnKQjmUn/AQp+iymAO5APkCjPJQ9KfTDroxCqND9CcYo/BpA2CmozVbAj7myD7V2wTm8o6ZdiXMDFnRoOrrV1+sUUaK4l+oloB2dqIAYa9B/HW2DK84l8b20uAAQCLjwLqt9305AAAAABJRU5ErkJggg=="); -} -#diva-canvas-close:hover { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJFJREFUeNqslLEKwCAMREPpVP9/756hgnOhf5ZGuYIUSSxN4JZ4PKPRkIiQxqY6VLtqrTlL1QNvUSXkGuRUCcQWDBDu/BcYrRJ5aQgbQB5lQoniwQyIgGEaGOu+Z2I39iCNMVm6f/TJy3SbQR86Y3Z0oagIP1rIZYe0P+xBRn6REvVpE0bBvzHSDbb8Z7DdAgwARUeIgUWvd3IAAAAASUVORK5CYII="); -} -#diva-canvas-minimise { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFlJREFUeNpi/P//PwM1ABMDlcCoQUPRIBZfX9+jjIyM2kA2I9RgRjTMgEYjY5j6ayxAQ6yo4CAt6nkNiG8AsQYQ/4fif0hsWP5Bpv9jUXudcTSvDUGDAAIMAJ9XGBGo0H6VAAAAAElFTkSuQmCC"); -} -#diva-canvas-minimise:hover { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAE9JREFUeNpi/P//PwM1ABMDlcCoQUPRIEYgPgrE2lA2E5RGxgxoNDKGqb8GIv4PKq+xAPENINaAuuwflEbGDGg0Moapv844mteGoEEAAQYAhHkXuTBtU6sAAAAASUVORK5CYII="); -} -#diva-canvas-buttons div { - cursor: pointer; - background-repeat: no-repeat; - width: 20px; - height: 20px; - padding: 5px; - display: inline-block; - background-position: center center; -} -#diva-canvas-buttons div.clicked { - background-color: #DDD; -} -#diva-canvas-buttons .contrast { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXlJREFUeNq0lb1KxEAUhZPJgqS08BksLERZSJ1CbPLTBUFwW0uF7dZSW42drTZKupg0VqkXgtpYWPkAFjaBNGviOTIJIayLbuKBIXeGvd/M5ObcVcuyVNryPE/L83xXVdUhptWgUg7kpLquPwRB8NnOVdtA13XXsXaN0FAWa4oNR2EYvjYXRU2GHMc5BuxJwt4QXwohdhC/zAEa/C1zmFstDqrAtu0jPM4ZE5Rl2ThJkhnnSJr9cEqdOchlfFFfWV6TJ1vBZvu4xl0zC8BnPDYXXD9H3havL1gA+c6421Ub9kvpZJAlWE35zt6LojhRlpdBlpCfBnUTx/FHByALOxSNb+xR6a7/AfYqIe1EbffAS/sH0uhycmBZ1moXGlmCXYNGx1iDb0878KZkCbYgdg3aB+MQNtxbAkbrjcj6rrJsQRMWCce+hdl90zQHfwBOqjZW90O2INlxzqSv2b7uNU2LYUkf8415JyMsiiK/lKDeG6za91/AlwADAP4sxwU5rOxvAAAAAElFTkSuQmCC"); -} -#diva-canvas-buttons .contrast:hover, -#diva-canvas-buttons .contrast.clicked { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAM1JREFUeNpi/P//PwM6YGRkZAZS7kBsgoRB4AwS3gnU+xdDM8hAZAwE6kB8AiRFAIPUqGPoRzKIEYgLgfgbVMM9IJ4AxC5AfAWHod+gehixGViIpBBkEAuS3AUCri1EMRDqTZBtoDCJwBIMhAz8BvM+CDAjhdlUdMOINBAWpiCzGLygAq+AWJACA0HYiwkpSSwCan7PQBkwQTbwHAPlgDYGUhUwQbMRCBhRwbwzNDUwDlgoCFJqIPUTNtWzHk0KB5oUX9QqYBmpXQUABBgA5FBbDJAAnEYAAAAASUVORK5CYII="); -} -#diva-canvas-buttons .brightness { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAb5JREFUeNqsVM1KAlEUnju5cKH0Bi6rhbToBdIWQuXPboIKX6GdEEWRFIG7HiGIwNkpRtAi6QVaSIS57A1CFy5spu+rM3IbR70LDxzOnXu/78y55+cq3/eteVIsFt9om81meh42ZpmJKc6y9Y9CoVDOZrPGZGLJiXTIA6XUbTKZvHMcZynEzYmOhRhiydGdjqMZDAb3AOxguTccDt9hq8EZcvcZjg6YE2KhdXInHLbb7RH+ekBn8Xj8RoqxCVOBbgjsFVrDD16IAdaCvcL3d+BHTatyqVQ6xtklMdCebK9AfVzztNFoXEfxIh1KZM/QD8/znFar9ds2+Xw+bdu2i+UqdIuRzqyyJrym0p1RuOaeRF2J7C9p2iCXOSkAc9bTnelOwekFecU6BfMkxyPbWrBMy+EDzDautx6OUvLYwfIRt9k1zWGN1WQB6CDkjEXxBWMW4cLahuPECWDTuq77NauxgV0G9oiNDexkY3PQOZsyTucgVec8aWcwFxy9fr9/yEn7l8NEIrEfzCb/GiKnpD3GIpg6OcL9E0YYKJJezmQyMX2PitekSw3vE0uOvqcMX+yuvDpri3qJR6aN/SPAAFsVBiFOQpN5AAAAAElFTkSuQmCC"); -} -#diva-canvas-buttons .brightness:hover, -#diva-canvas-buttons .brightness.clicked { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPlJREFUeNq8VDsOgzAMTSA7c5fODLkDW4/BPVh6Hi7A0nOgirlL5+58aqNHZWgoGaxGeiJ5fjZOeMRO02SOhrW25Sdp/ZHWmbgRqzPJppOSEJ3MWs5ZkbxlbJsDPKkJ6cIjdmZsuBRaXpQfXgicEFxlcgisEQ24r4LirSzMsC4IDeEJ8LxALIN2vZsfHVSEgTASOmAEV+3m7RQrkHgneMF7cMPSaWzBBt34QMwj1oRyLQVa4bMLkQ+yAp/Xi+b5jl06nPOJ5uyAG0J9YrSH9pb/81HUbKNqbPVfT/1yEEVdoJv5DAO8k8VmY0fe2B0slmvdxH2sr98CDAClFhsKAJcnrgAAAABJRU5ErkJggg=="); -} -#diva-canvas-buttons .rotation { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAATCAYAAACdkl3yAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAe5JREFUeNqsVM9LAlEQdrdFrdhD2CGCqEsQBVFLUR2iPIo/UAy7FVR0iS4RHetP8BSEYUV18mKprPQD7A8oD4EdOnQoCbqG5Fa72vdslE3MFBv42Nl5b743M2/ecPl83lAuLpdrHJ9FYBYQdUuPQEDTtKAsyy9OpzPGcdwpJMDpiTweT08ulwvDNmSoLp/ANTAByJFIxF4icrvd/SC5gNrJ/nFSGmv7UJPkbGTbAC/pRXmHWApESEWC4RywAB8gWTaZTMehUEgrD4VFjdRSUFuKNuz3CqTvEEmWnYic47/lBJJNPQkTBGMTEI0N+igZVqLRaLxacZD+Ns/ze9irIRL1m1t7ZhGtU3j3ZrP58I8iG2Kx2E0lOw8Mkx6sVJNahRG1UVp3hgaE1xXs6V+IIO2NEilU7KlGicKkr6G7u+px9vl8RrRPIRMetQmQvRU94q+DpElRlDOo7PHO8GjAK/bwaN2LE5ZqIGnOZrMsgGkWDKS7UGxBEObwKd7aLsjCdru9oxKJw+GYRCS3qOkC3falJEn+0uuHcx8+R8AI+bzRy09iTxqOA9DZeBlkd0N7TlRVncdsev0xj6xWqyCK4gbUrbJRUS4P8FtFWeTSBKg0IVG8XkTAHvMYwcI6H7VI4UKSmUzmIJFIKHqfLwEGAAbH1Astu6nmAAAAAElFTkSuQmCC"); -} -#diva-canvas-buttons .rotation:hover, -#diva-canvas-buttons .rotation.clicked { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAATCAYAAACdkl3yAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAWVJREFUeNqslL8vBEEUx2fvRKK4QvYKUYhGIjoUNEJ7KkEvUWh0Eg1/hfpy7iotiRwSEYVCQoKGRETBiUolyBFnfea8kZfN7uXOesknMzvz3nd+7JtngiAwYbBRyMMzBIo7WIUu8GAPFuoxIYFeOA8FR/EBx9Iv21hPBIzneQM0+9BtfuwBinAm3+0wBTPSd/YOvtvJEDzJCnZiDtIxx7a7fg3tcNpNnsjAG+SiBJTQesRR8/bCcrAj25zHuWgaGFcwTNMBNfiU9tHOHYjqddxxmiFF8KAsVmCgZv5oVqhT+lcmgaVUv/JfQtmkQlXpj5uEtiF/7QV6WvlTkuFZ9zomVGJttSCShkPJo1k3WFZii02I2IQsqJglN+HDvZrYtqUiRmQMbpTvbv2ulUM/nCoH+zCPYA2WoQQX8KV8NiETVY/aYEUqQKN6dAuTOva3HoUeZp885hHBl8y/lPpUIq6qY74FGADbGm+BLZVKoQAAAABJRU5ErkJggg=="); -} -#diva-canvas-buttons .zoom { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAjpJREFUeNqklEtoE1EUhueGkGysioJQI9aNIApFqA/oRlCpMSVvCBafC0Vw51JXUijFjVAoyIjdFNxEE8hDyULM0heCtLjQjaCLCqKLjJCYzCR+U2/kzjjTBHrgzDnnPv75z73nXNHr9TS3xOPx/UKIo+gE83vQVfx37Xb7da1W+6ltIEIFjMViW4PB4ALuFZ/1BnqzXC4vDQRMpVLHu91uHnevMm+i39FR176nMJ4plUqGGzBgf9Lp9HaAnyhgL4gnDcMYgc1u0zR3MXYe/Sbnp5m/58swkUgs41+0B4jvVKvV2Z7H4WYymZ2dTqcMu0m5drpSqTxzMATskAL23A/MlmKx+AOwC7i/1tkIcfe/lNl77F8QCNzyA+sLR/AZo8vwYC6X2+IARCak32o0Gu+1IYR/vurvb7Vah90M+xexVq/XTW04+aKAj7lveVX6+5LJ5MgwaJzduJLiRweg3QHKjZ8cMuVT0rXC4fAHByCd8dI+PxkvDGJJVUxB4pwEfpzP55sOwEKhsIa9LeMxuqWYzWZHvcDoptOY5T5R0p33LGz+KHgQ6sQn5Lj9ACwy/Ab7FR1n3RTWrkEh13QZu0RhP/Ls5Wg0uiMUCi3izgw4wt9oSAJb7L+sggp3HcM0DbM53AMKm/U6ZXyJI5kn1TPse+gFKvwagw7Y1mw2j9gPBmtWIpHIiq7rHeVyrmIeuEHFgE7bUMjmGqx1FXRTgJLpdcz9v/UuPgW0TQqPhQ6pG7hvLcs6+0eAAQA9LheEWJANtAAAAABJRU5ErkJggg=="); -} -#diva-canvas-buttons .zoom:hover, -#diva-canvas-buttons .zoom.clicked { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXFJREFUeNqklD1LA0EQhvcEwcIQP7AIil9gJYigFoKVio02tmoT8av1F4i9pb2ooP9BEWwEFQLCkUA6ETQ2WmhhwOj6DszBMOyuCxl4uOV29rns7GwSa63RkSTJCB5TYAL0gRSUwB3y300oSJiB6ADH9NrDB9iSazRSNgOeleAbvDjEFyDvFSI6lewKTIM2nu8BK6Amco5CwlORuEdldCYb0w1uRO6SI8eMioRLn0wsGAKfnJ+6hEUhnAzJxKIDzv8B7XKuhVuDog4eTFzc8pPWj8sJetHP4xq+0IgUPonxgBamPB5EQ+cihWNiXNXCUnZBwGykcI6fVMOyniyALy7yI8j9cyAL4hDPfX24q1qn4JHNg1fO+6Wt+4S03WshfQP7YJHrtQZOWGJFy6yG7nIXOAv8MWTUhbihpa5tLYOK+jWW63wIesG6Txoqfp5Ps8jN36rmN1xSE3PVAh/d1NKmhCzdFtJq00KW7oB7MPwnwADMqkVBYMpLoAAAAABJRU5ErkJggg=="); -} -#diva-canvas-buttons .red { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAq9JREFUeNqUVM1PE1EQf7vLLt2NK+y2FmMglUSNYuCkqV5IOJlYAm1IOOnBCxz4G9Do0Ysxhj+g6KkElCaYxgMHQyiJPVnpQgxpDZhl+Sr9YLuw2z5nK61t3a11kknmzZv5vZl5M0NgjJEVEQRBjoyM+OH+Phxvnasl0EfD4fAH0Jcs/awAx8bGunVdfwZiP7KmOE3Tz+fn53f+CTg+Ps5omvYWRA9qTj8cDsfjUCh0VqskG60AbLIFMJM857aoKSBE7EMtkpVtHaDP57sMRe9sFdC0NX1sAcHAhf6TGn3aag+iKCbb29s5QRAuQsHpXC6nKoqSy+fz5cLzHMd0u1y8wPPciabpSjqd1WQ5aQkYCASuFovFp8PDw70AyFT0pVIJybKcYXQde7q6OkiKIip3hqI4e4PBNxsE8eImxqlqyn6/32sYxiyIfevr63LtixAxmpyYuPRkaspNsyxRe9e5tLQLir4iQrMJgvCWAUdHR3mIYhpqUY4qmUweSZKUrjgNDg7SLMchk+8MDVUjN1ZWjsXl5cPzIwNjM71JELyZ8iPgusLGYrGUqqqFe17vFUi/GpXgdCKaohA1Nye7FxZ26z4HMHTAaoNeshyvRCKh4EIBX+vp8Yhudxn0eH8fU8HgT3cksmflA/XrNyO8YdcSHSzLbG9uGsB/mtnpZGwbHbDMTzm0M8irqt6oo46O9CaAhyR8hmRnsA092Khj4/Fckz6XSKhhxO42WyiomUymuk2Ke3tnws6OamcPPx0hYVmuAeiiTQro0+pqSj89xQawODOTIu3TXRzAeK08KTBar3ieNzdwoNHwIJs9+RyNfnuwsYE6trYMG7z3FxB6/deChZV/F84Poa7myneB/J0kya8gv3sZDiP9d88OQA9dBz4wawbeH29j/KWC8UuAAQBHuCIrBf77FQAAAABJRU5ErkJggg=="); -} -#diva-canvas-buttons .red:hover, -#diva-canvas-buttons .red.clicked { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAn9JREFUeNqUlN9rUmEYx9/3HHOezWPaZk7ZUCEDp0ERLSq63ajd1EUsGEHQxa4kiLqs6KY/YF1IdBGsYGw3xS666mZMibXI0QwDFRcc3JjS2TTmFPX0fU8qzs6x7YXveXif8zyf93l/UkVRiFajlHIwN6BLkL/hTkCfoPfIq2vmaQEBG4J5Cp0h2m0deoZc6b9AwIwwbyA36d5+QneQX2l3chqB04eAkUbMdKdTCzhBDt8mugIx3UEY6xGA1kaOboUD5OjtQI6hveNwODKCIPS6XC6L2Ww+ls/n9zKZTFGWZXXhB6zWHr/Hc9xpt/cVisVKSpJ2eiUpo7nLKN0D8yQUCt1yOp3GZkCtViOpVGpXrFb5EZ/PxvM8bf6rZ7Pkajj8GYS7QUVJtKYM2EWYWWgkEolsto+IismLmRn783D4hEkQaPs/7/IyM6Nwfo1TOqYCARNhH0NqVbFY7Fc0GpWbSbcnJ42ixUJEUSTXpqZaMGMkQobi8WbXBOjrdUptPDr3oMvtIyeTyZ1yuVwPBAKWsfFxHoOq/j5Af6ysEPviIgksLXVuDiusbtC7Xpj6tmF/nxsNBt2Dw8Oqb1uSiHVujnjX1rTvP+49A57WOw/9FouQWF0lTK01NZuJVycewHNsU/J6wN1CodzpMxUKugcSu53lGk+SZvueTv+T3b+xoQtEhV8Y8INewKYs/87lcq0q6dYWOdmlQgBnORxstkDv9IJeLSyky6WSUi2VyKn5eUL1p/vSrygf1ZuCY2GC7z50Uyv4it/f87BScfvSaZseDNN4cF5R9g48sABfgLneePLZpU9C36C3+BhQ3SPu75k9yzaArRmbJqusyfgjwACqZ9e9Z++6DQAAAABJRU5ErkJggg=="); -} -#diva-canvas-buttons .green { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAVCAYAAABG1c6oAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAp5JREFUeNqkVVtrE0EUPjPbbi7t2oZUk0hDCyUWC+bJIv4FhZAg0pf65EP/RUv9A6k+K4L6UBCJrSAKfWlDUbAQWoOBlDSXtptIDU2aGyTZHc+kaYjrbhrxg9k9cy7fnplzZpYwxkAPZJlQeAB+FO/iuNlWx3B8gXfwni0xVTdOj5DskXEQYAnFW6CP76DAMvOyo0sJyQ8i4us1MJiAXiCQxucjNsPq3Wqq47pwKRnHuc+CVk11HO9Dv9DxpZrlOvE1Cv1jtB1jkCGBMfhXaGIGuieOHUdy6PaQ1Q3uK8MwPHgCJ9UES5TyLN/aeBvYxCk6JTnAYT1jZ400pM8yO5lkp6m6qxwIBCYVRVn0Lnsf2mw28cJBYQrElXiRoee0MD0igEAubIVCob67uPtWEIQnoVAo1Vmy3++/02w2X6E4c7xxnO3O2iJYIDgZvLoysXLNQi2k2yZvyDkew2M5B9cJkUhEwiyfEUIkrqhlarX69brZ7rRb+HzOOTdoF+3ERE3gNrmFaDmqcH1iL1HIhXJya5mECMgxu7q6+oFnOI/jj43NvsimYp9jslk1g9Pk7GTlMrvAzMwQ34hnj54fJTXl4RzzgsfjeYxfcGmLV9mvVNSUqtrH7SN1qEOhUoCDwwO2+XLzMBPO/DSouTqAZB6jjpBESUxH081065Sdw0qtYo8musGXnDeyVqvVRj+6LuQpZhgzsuZyuZJWJ8tyybDHkYtidT4ZOZTL5WqxWOzcJlzGDKuGRxu56Pr6+lcU1oycwuFwqtFoMD62trZSPcjWONdAO5OgJEn8Bg5oHU9PTyvb29vR9sloGvCFkOPpXxesz+ebxfk93At+OsdQ3qeU7qH8pu0yr6qqt90Zv9AeQ/kjZvat5y/gf/BbgAEA/G4wfR8yHDAAAAAASUVORK5CYII="); -} -#diva-canvas-buttons .green:hover, -#diva-canvas-buttons .green.clicked { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAnBJREFUeNqUlE9vElEQwOftIlAC1EPRUlPDwT9ZaoyJGqOfgHgxXlvjxUMPTfQT1IN+gsbSKEkv6oGTvREbYmJiKKG6yUZtV9M9YCiHhQ2QJYEKLM952wW3yAIOGd5782Z+O/Pe7BJKKQwTAoSD77CMkxgub1jmL0DhPVyBVxRod2jcMCDZJxdweI3Btx2elsX/hzRKlbFAkideaICEsMswSgj8BB9coxF6ZDdz/zg24PlYGBPmw3zHZrhPSugcgkmEQBnLPuOYIcLOTww7zjJkxjiWTGAO/lcGYlz2xczBzJ5bcBthPsz7OT9oHQ0K7QLoXd3cD3ABmD81DyFXCOpGHYpG0VB/qHsgDAESQiI4PF35ttKZPTvL9+wG/uTfMnSx7aKeKLjI3xxUVTXW762vYc8+w7vI90tG2C2z7wCimReZoj3rKW4KEnMJ2Dy3CT7Od6LabDx7yGJYrMUADicBHFdR3cwgJaTyTnqn0gtaDC5CkAua5S5NL/VhuQ+5ivhSLFtLFrvKWKy0R6h37E9W3imVlrtFF64vBGKnYwRLOj5DPgC7td3u9sb2Yfpx+tfA9bD0aQ8YHry8wqdCvZartSNCZLrFt0CrayDJEo0vx/OZNxnV4c677IQvOnVE0Bv0iB/Fjghi3+Z3+z0jmugSuxTNaVfX9fYkNptoDCg77SqKUp/EZhOZAVNOu9VqtVEqlVq9NZsz2whgisOG/IyTLSePZDKZbzablCmbj4BtMZb5tcH+8aLhCer9YZ6CIJivhyzLHScY6hqyjk58vhB8E4e7jMFebdQD1K+oby2XB6hXrc7QrPNPWVWa8keAAQAeE/tQULPnhgAAAABJRU5ErkJggg=="); -} -#diva-canvas-buttons .blue { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAnhJREFUeNqUVU1sElEQngftypafohHbgERJ0yY1aevBtNGz6YWLx4ZUrzTx7NEYPXhpYiINh5409dRy0HLogWBim1SpgDGpKVwoWDbtGlAQjG2xsH6LgGB313aSj3kzb+Zj5r3ZXSZJEikJY0wHdQu4Dgw33AngHfAKeTXFPCVCkF2EegCMkLJsAg+RK/yXEGQc1AvgEmnLZ+A28ivtTp1CoPcEZNSI8f7rVCJ008nFrUmIdvuhrKcgtDZyVCs8T6eXjpyudqOvbzJtMOyY7PbLvSaThcvn935mMslioZA7rJdjtXIul8tss9l6yuXyr2w2WxIEIa14y4x9wqyx5zMza+MOh74VUK1WaXs7+U2SikdDQ4O9er2eNfdEUaz4fL4Alo/Ak2m1DLJJ/H7AcnxtzdXRD88baG7u8Tm/33+B53nWvre+vi5CXQEWcJYTdULGNs+C7BnWBtmxteWk1dW/J+HxuMliMZLZbKKpKQ/X9EcikWI8Hv/aMGX/fZCaUSG7B8Pe/s/h8AQtL/cTx5nI4bC1/Ha77OMpFArtBoPBtMLlTKMU3Q2i449fLDZAlUoXjY3lyOn8c6aCUKVAILW3sfHmi8qNj8i9XVWbB4uFo2iUAc33ACOjcZjXGKEhtCztqu2WSjUF396hBmFePsOY2m4mUznmS6VelzQIEzLhglaFonjUsnM58bBQeP9Dg3BFJ0nDYbQ9rxaxuPid9vcl4EhaWrqbwqirhb7EcEfrTwpj8R6iM09QrVcpcmCAFbq7fTvJ5PyBGhnwFFwHHS9YxhI3Ue0d4BoseTY/EtXewp4lGpV7nwZGgUH5AhqfhBW5sibHbwEGAKuO5gwYgh5eAAAAAElFTkSuQmCC"); -} -#diva-canvas-buttons .blue:hover, -#diva-canvas-buttons .blue.clicked { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAqZJREFUeNqUVU1ME1EQfq/dH2ytVKq4TZtgYjRAAjclHvDA0SZtDbGnmnjDhLs3JHomMZ45WT21IbX8GLzBSYIciGBrMbXFn7bAVhe6/d12n7O1xbLuVpxkd2dnvvnevJnZt5gQgrQEY2xwu91e8N+E14GmOQb2t/Pz86/ALmvGaRGOj487JUmaBnUIacsWTdOP5+bmvv2T0OfzMeVy+QWofaiz7HZ1dd0LBoPVdqNBjQKyiVOQKdLXxKKOhJCxC51StLAnCF0uFwdFt56WUMEqMbqEALiA/lPUMVT7S0/PQJKi8iartfccy5poURSKPP81XyjkG4U3m80Mx3EWEFOpVJJ4nj9Kp9NJzS5j/PEyQrVHMzOf73IczbQAsiyjbPbLIUWVicPh6IaMcMsnCEJ1YWEhZDQan4TD4dTxljGOjiBUD4A2uLhozbSvyLI0mpy8f3Fi4kEvTTO43ReNRrPwGKzVagGv1zvSIMQ4boE8pkBvZLWyYvuxuir9bAWNjd2gTaYzSLlGR28dZx6Px4VEIpFr1pGBnUx5PB4LZCj5wXSisLOzV1KhEJs2Ghlks3UfZ2WznUcUxaDNzc3M+vp6UtUfhcOvNGVYq3uRyKU9npeJ3b7X53SyDdJMpkKWlhLf9/e39nXmcggI8VW9kbBYKGZjo1yDq21M7EyHKboGWyY5Pe/hIZHUtlJJkDoQ5pQux/S8Ozv1vNp2dBTLdxjyGBDKy7rL5QzFg4N69Q+ZAPpuscO3vWwgZHgN1IgeKBAopSoVmVSrdbK9/RyGl+iRReDgXWt+emefIlRQTuA7amAmgwuhkLjd3/8GSVKiprNuWBTFZ38dsBh/uA7327+PfAJzRT6B/h4h+qXb/VCB+GGAh6FWymTwEKv8El5DZu9aHL8EGADAeiNURmYqjAAAAABJRU5ErkJggg=="); -} -#diva-canvas-pane { - background: #DDD; - padding-bottom: 10px; -} -#diva-canvas-pane p { - margin-left: 10px; - padding-top: 10px; -} -#diva-canvas-pane p .link { - cursor: pointer; -} -#diva-canvas-pane p .link:hover { - text-decoration: underline; -} -#diva-canvas-mode { - text-transform: capitalize; -} -#diva-canvas-slider { - width: 188px; - margin: 0 auto; - display: block; -} -#diva-canvas-slider .handle { - margin-left: -6px; -} -#diva-canvas-minimap { - height: 210px; - width: 210px; - cursor: crosshair; - margin-bottom: 10px; - background: #000; -} -#diva-canvas { - position: absolute; - left: 0; - right: 0; - margin: 0 auto; - z-index: 107; - cursor: url("data:application/octet-stream;base64,AAACAAEAICACAAcABQAwAQAAFgAAACgAAAAgAAAAQAAAAAEAAQAAAAAAAAEAAAAAAAAAAAAAAgAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAfwAAAP+AAAH/gAAB/8AAA//AAAd/wAAGf+AAAH9gAADbYAAA2yAAAZsAAAGbAAAAGAAAAAAAAA//////////////////////////////////////////////////////////////////////////////////////gH///4B///8Af//+AD///AA///wAH//4AB//8AAf//AAD//5AA///gAP//4AD//8AF///AB///5A////5///8="), pointer; -} -#diva-map-viewbox { - border: 2px solid #AAA; - position: absolute; - top: 10px; - left: 10px; - cursor: crosshair; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - display: none; -} -.overflow-hidden { - overflow: hidden !important; -} -#diva-canvas-wrapper { - z-index: 106; - position: absolute; - top: 0; - left: 0; - bottom: 0; - right: 0; - overflow: scroll; -} -.canvas-throbber { - z-index: 110; - position: fixed; -} -/* End canvas plugin */ -/* Begin download plugin */ -.diva-download-icon { - background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAVCAYAAABG1c6oAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2dJREFUeNqcVV1Ik1EYPt+nNacmc3P+hFbqTC/c1K2WMppRmkokUhuZClkwwTFjgRdFg66MLroRIRgYqUkbQcws6aJA6y6oKaTlnILJWHUxJlupyHI9Z37f+BhmPy88Oz/fe57z/p13TDQaJYnS3NycjMEIaAENUAmIgFngPYfH4+PjwcSzTCIhyJQYhgA12V2+AF0gfb4jIYgYDDeAW8BehmFISUlJDAqFgqSkpJDFxUXi9XrJ/Pw82dzc5DmGgasgDtFFsoDcAvTRSW5uLunp6YkqlcoZgYvfdToddV/j9/u1AwMDorm5Oap+CUjjQrRtIawrhUUzmKfU1NQQq9X6WSwWd+L7VEtLi3dra0vB35qamlrudDo3oPsA43GHw8F/aoOVDpYmAGQPKZlMJiPd3d3PQEbjOEW15HL5AWGMGhoaDmJYwpna1tbWm5WVlduxY5h74MpjMa8F2VG6CbJvEomkHdMw+bNEQXK7q6vrOawm4JBg7wqbnp6up18LCgqIVqu98JdkccnPz+/UaDTrdJ6VlXWGRfZO0kVOTs5XDK/Jv0sAFsbOra2tlbP4ofEiiN9H8p8CyyY5wn3JeyCxawKBFaESsnsM2c1DTFnh/vT0dI3L5RKHw+Gnk5OTEbo3Ozvr4b+zhYWFP+hkZWWlQHjQaDTqEPQnq6urwloly8vLNpVKZQZZfG9hYeEw52WUzc7Ojrm6sbGhEh5sb29/0dbW9jPRvaKiImKz2WhJRfg9JPYUl9ggK5VKYwENhUJy1NFZwdlPBoPBXFFREd+gz89isbzF2Cd4+4eCweAJrmY9LGI1UlZWxhfnfSjIeOWkpKRBELgyMzNja5PJFMa7PofpFkdG4zsUiUREGRkZpKmpycEi5Utms/kNvR3FKYfCIyhKeVKUUyfetb+uro7U19dfxJZf0OLu0ofBXRbAZcN8t9k/MTHhtdvtqb9pTUeQcQPLstc5snIMI0AVXev1etLb23sa05fCftg6NjbmGB0dFbYmt7DbcM2Wopq2OKrQ2NhIOjo6BuGyaacGa/X5fHf6+/tFHo9n12JGAmiLI2gOdiyvAes7dmxIKdwbcrvd1ZSUNlTaWKnVxcXF8aarVqt9aWlpl6H/ate/AL7ggfOca9TFKuiJUAUfuDC8A5w7NZJfAgwAxxpMCajpN8wAAAAASUVORK5CYII=") no-repeat; -} -.diva-download-icon:hover { - background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAVCAYAAABG1c6oAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAwBJREFUeNqclV9I01EUx+9+C3M6JzYhhnMNfcgxI6ipaD6sPxuKJRphjYIMweWD0EtPgxj40ENImD5EPuzFN+tBn5YIawUxZ249JXtQQkasLHNuobH5u33P2G9cpyJ24cPd79x7vvf8zv2dMxXnnBUPlUpVhakPXMzTCHbAZxABYTAN3+w+ZxIUwbgOvtHSEXwC1mJ/lRIhotJhegHu07NGo2Ht7e2spaWFNTc3s1QqxRYWFnKEw2Hl8L/gCXjGFSEhsmnldLvdzldWVnZgfw+eg3vgIZgEkUAgINfV1YnRDhd08mIuZdHr9XJZlj/AXq/T6arE18RbJPOO9q2tra+9vb2KfRvzWSVIgyRJv2nB4XDw3d1dDxYkWvR4PGdEQRwgC/mqSCQSszU1NYooXdQJEvSQobKyki8vL8+KCT5CMCc6MzOTEPZclWpra7tItaOjY7uhoeEBO95IdXd337ZYLLkHvV5/SUomk/SNMUQYxPSLHX8EcUEUJdNqtVckJLeCHoxGY4D950Aev9CcTqcbpcIxwWCsqFq6fD6fU7RlMhmy3wQO0R6Px9doLi0tPUnqcj7hj8WE9/T0vD6sSoaGhkbFvWazeZ7snZ2d3xk+Fcobx+X4xU3ZbLbf6XTuE3O73XTTl8W91dXVP2htcHAwwAYGBj7SQ0lJCRW/Wdy4uro6bTAYCmJWq5VvbGw8Lar9G0JReNni4uIwTlCc3gFJcND6/f41tVrNUds8FAotwaYWxPQoilx0bW1tfHNzs54WdFNTUz+F1xqlL14QPT8yMpKZmJj4g98mQewUeEs+5eXlPBqNzhdqGThcLldxa7IozihHagy3Dmtx4+PjadhPi4JsfX19EgkXRXfyKaCI7wI3eAWWlD1lZWV8bGyMOlffnm6TRwNezs3NcZPJdFRz5a2trTwWi1GLe3RggxXGNSTXh8sw4sLo0lgkEmGIhtlsNtbU1JRruKj9EC6rH/v3FsRB/ykYVI53gA1cwJ5zqA7qztH8K4fAGyAXO/4TYAAJjVy1G5e84AAAAABJRU5ErkJggg==") no-repeat; -} -/* End download plugin */ -/* Begin autoscroll plugin */ -.diva-autoscroll-icon { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAASCAYAAABSO15qAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAGhJREFUeNpiYGBgKABigf///zOQg0EARH4A4gZyDIIZ8B/JoAJKDIDhB0CcQIkBRBtEyABkgxwoMQCGD6AbRKoBGAYxQgXIBRuZGKgAKPIC3QLxArnRSHZCIjspk52ZKMrOFBUoAAEGAKnq593MQAZtAAAAAElFTkSuQmCC"); -} -.diva-autoscroll-prefs { - display: none; - margin-right: .6em; -} -.diva-autoscroll-prefs-text { - float: left; -} -.diva-autoscroll-prefs-input { - float: right; - margin-left: .6em; -} -.diva-autoscroll-pps { - width: 9em; -} -/* Begin iiif-highlight plugin */ -.annotation-overlay { - padding: 1px; -} -.diva-annotations-icon { - float: right; - border-right: none; - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAXCAYAAAAcP/9qAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAVVJREFUeNrEltFtwyAQhknUBbwCKyQjOCOkI8QD+CErpA8ewB6hjOCMUK/AChnBgfY/6ReiIcZIPumMDwwf3OGD3TzPagv58I+u68S+Or041ZnjPZw2Tg1sP1bvdED9r7Rt+wcm6A3vEwZZIhX63AOovCuGC1gD6jt+UudcqWjyVQy+h3FGORSAesAI6CnwnG+rGcwxWgvt4cEf1DHclzYGXiM3QBt4rcLKBW6pLAbusTk99EChY/gRcVelwD1cLNDLi19NlQKnoLLBprDjfgvoGrBATQ6UE0gO1NImWgTNWTG79xgZ/C1oDthDv5DhQgjbB/xexcCSXscXK9Vor0uDNQatAdDByjUdDKrk5hIZl8Q0BU7N9BTYVnJv4BEVqY+CDZL8FbM3/3yfOjJrukyYd2Js6Xbw7XTO1BFeS57rvLkG3D6mFXGfsIAm9eFuq1vmU4ABAJY9c+Sb7cPEAAAAAElFTkSuQmCC"); -} -.annotations-icon-active { - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAXCAYAAAAcP/9qAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAVRJREFUeNrEltFtwyAQhknUBbwCKyQjOK9+S0eIR8gK6Qj2COXNr84I9QqskBEcaP+TfiEaYozkk874wPDBHT7YzfOstpAP/2iaRuyr04tTnTnew2nr1MD2Y3VOe9T/yjAMf2CC3vA+YZAlUqHPPYDKu2K4gDWgvuMndc6ViiZfxeB7GGeUfQGoB4yAngLP+baawRyjtdAOHvxBHcN9aWPgNXIDtIXXKqxc4JbKYuAOm9NDDxQ6hh8Rd1UK3MHFAr28+NVUKXAKKhtsCjvut4CuAQvU5EA5geRALW2iRdCcFbN7j5HB34LmgD30CxkuhLB9wO9VDCzpdXyxUo32ujRYY9AaAB2sXNPBoEpuLpFxSUxT4NRMT4FtJfcGHlGR+ijYIMlfMXvzz/epI7Omy4R5J8aWbgffTudMHeG15LnOm6vH7WNaEfcJC2hTH+62umU+BRgAQ41z5HnPmSYAAAAASUVORK5CYII="); -} -.diva-inner.annotations-hidden .diva-highlight { - display: none; -} -/* End iiif-highlight plugin */ -/* Begin iiif-metadata plugin */ -.metadata-label { - font-weight: bold; -} -.diva-metadata-link { - font-size: 1em; - line-height: 1.8em; -} -/* End iiif-metadata plugin */ - -/*# sourceMappingURL=diva.css.map */ diff --git a/build/css/diva.css.map b/build/css/diva.css.map deleted file mode 100644 index 9972990d..00000000 --- a/build/css/diva.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["viewer.less","diva.css","mixins.less","plugins/canvas.less","plugins/download.less","plugins/autoscroll.less","plugins/iiif-highlight.less","plugins/iiif-metadata.less"],"names":[],"mappings":"AAGA;EACI,iBAAA;EACA,YAAA;EACA,qBAAA;MAAA,aAAA;CCFH;ADIG;EACI,qBAAA;EAAA,cAAA;EACA,2BAAA;MAAA,uBAAA;CCFP;ADLD;EAWQ,qBAAA;MAAA,eAAA;CCHP;ADOD;EACI,mBAAA;EACA,kBAAA;EACA,iBAAA;EACA,gBAAA;EACA,eAAA;CCLH;ADQD;;EACI,uBAAA;EACA,cAAA;EACA,iBAAA;EACA,cAAA;EACA,uBAAA;CCLH;ADOG;;EACI,WAAA;CCJP;ADQD;EACI,sBAAA;EACA,gBAAA;EACA,aAAA;EACA,YAAA;EAEA,kBAAA;EACA,yBAAA;EACA,WAAA;EAEA,0BAAA;EACA,6BAAA;EACA,4BAAA;EE1CA,uBAAA;CDmCH;ADUG;;EACI,0BAAA;CCPP;ADUG;EACI,YAAA;EACA,iBAAA;CCRP;ADYD;EACI,aAAA;EExDA,uBAAA;EF2DA,iBAAA;CCXH;ADaG;EACI,sBAAA;CCXP;ADeD;EACI,cAAA;EACA,kBAAA;EACA,oBAAA;EACA,oBAAA;CCbH;ADgBD;;EACI,mBAAA;CCbH;ADgBD;EACI,YAAA;EACA,0BAAA;KAAA,uBAAA;MAAA,sBAAA;UAAA,kBAAA;CCdH;ADiBG;;EACI,4KAAA;CCdP;ADiBG;;EACI,oLAAA;EACA,kBAAA;CCdP;ADiBD;EACI,aAAA;CCfH;ADcD;EAIQ,kBAAA;EACA,0BAAA;KAAA,uBAAA;MAAA,sBAAA;UAAA,kBAAA;CCfP;ADmBG;EACI,oBAAA;EACA,kBAAA;CCjBP;ADoBO;EACI,sBAAA;EACA,mBAAA;CClBX;ADqBW;EACI,WAAA;CCnBf;ADsBW;EACI,cAAA;EACA,uBAAA;EACA,mBAAA;EACA,YAAA;EACA,wBAAA;EACA,uBAAA;EACA,iBAAA;EACA,WAAA;CCpBf;ADuBe;EACI,uBAAA;EACA,YAAA;EACA,gBAAA;EACA,aAAA;EACA,kBAAA;EACA,oBAAA;EACA,iBAAA;EACA,wBAAA;EACA,gBAAA;CCrBnB;ADwBe;;EACI,0BAAA;CCrBnB;ADwBG;EACI,o1IAAA;CCtBP;ADyBG;EACI,oaAAA;CCvBP;AD0BG;EACI,gZAAA;CCxBP;AD2BG;EACI,sBAAA;EACA,mBAAA;CCzBP;AD4BO;EACI,mBAAA;EACA,UAAA;EACA,WAAA;EACA,cAAA;EACA,6CAAA;CC1BX;AD6BW;EACI,iBAAA;EACA,eAAA;CC3Bf;AD8BW;EACI,4RAAA;CC5Bf;AD+BW;EACI,gWAAA;CC7Bf;ADgCW;EACI,4PAAA;CC9Bf;ADiCG;EACI,4zCAAA;CC/BP;ADkCG;;;EACI,sBAAA;CC9BP;ADiCD;EACI,gBAAA;EACA,UAAA;EACA,YAAA;EACA,aAAA;EACA,cAAA;EEpMA,uBAAA;EFsMA,iBAAA;EE9KA,6CAAA;EDgJF,sFAAsF;CACvF;ADsBD;;EAWQ,iBAAA;CC7BP;ADkBD;EAeQ,iBAAA;CC9BP;ADeD;;EAmBQ,UAAA;CC9BP;ADWD;;;EAwBQ,WAAA;EACA,eAAA;CC9BP;ADKD;EA6BQ,gBAAA;CC/BP;ADmCD;EACI,qBAAA;EAAA,cAAA;EACA,YAAA;EACA,oBAAA;EEnOA,uBAAA;EFqOA,mBAAA;EACA,iBAAA;EACA,kBAAA;EACA,iBAAA;EACA,cAAA;EACA,qBAAA;MAAA,aAAA;CCjCH;ADoCD;EACI,mBAAA;EACA,OAAA;EACA,QAAA;CClCH;ADqCD;EACI,mBAAA;EACA,OAAA;EACA,UAAA;EACA,QAAA;EACA,SAAA;EACA,eAAA;CCnCH;ADsCG;EEhPA,kfAAA;EFkPI,mBAAA;EACA,iBAAA;EACA,eAAA;CCpCP;ADsCO;EElPJ,0fAAA;CD+MH;ADwCO;EACI,gDAAA;EACA,mBAAA;EACA,0BAAA;CCtCX;ADyCD;EACI,mBAAA;EACA,WAAA;CCvCH;AD0CD;EACI,mBAAA;EACA,WAAA;EACA,aAAA;CCxCH;ADqCD;EAMQ,sBAAA;EACA,aAAA;EACA,YAAA;EACA,gBAAA;CCxCP;AD4CD;EEnQI,uBAAA;EACA,2BAAA;EAIA,wBAAA;EACA,4BAAA;EFgQA,aAAA;EACA,2BAAA;EACA,OAAA;EACA,QAAA;EACA,UAAA;EACA,UAAA;CCxCH;AD2CD;EACI,iBAAA;EE3SA,uBAAA;EF6SA,cAAA;EACA,aAAA;EACA,mBAAA;EEvRA,6CAAA;CD+OH;AD4CD;EACI,gBAAA;CC1CH;ADyCD;EAIQ,YAAA;CC1CP;AD2CO;EACI,cAAA;CCzCX;AD6CG;EACI,WAAA;EACA,YAAA;CC3CP;ADgDD;EACI,4BAAA;CC9CH;ADiDD;EACI,mBAAA;EACA,WAAA;EACA,YAAA;CC/CH;ADgDG;EAiEJ;IAhEQ,aAAA;GC7CL;CACF;ADiDD;EEvVI,cAAA;EFyVA,mBAAA;EACA,YAAA;EACA,aAAA;EElUA,+7BAAA;EFoUA,uBAAA;EACA,uBAAA;EEjUA,6CAAA;EFmUA,SAAA;EACA,UAAA;EACA,mBAAA;EACA,kBAAA;CC/CH;ADmDD;EACI,mBAAA;EACA,aAAA;EACA,cAAA;EACA,uBAAA;EACA,uBAAA;EACA,6CAAA;EACA,SAAA;EACA,UAAA;EACA,oBAAA;EACA,mBAAA;EACA,aAAA;EACA,eAAA;CCjDH;ADoDD;EACI,YAAA;EACA,aAAA;EACA,aAAA;EACA,2gBAAA;EACA,mBAAA;EACA,SAAA;EACA,WAAA;CClDH;ADoDG;EACI,gXAAA;EACA,aAAA;CClDP;ADsDD;EACI,mBAAA;EACA,YAAA;EACA,uBAAA;EACA,uBAAA;EACA,6CAAA;EACA,SAAA;EACA,UAAA;EACA,qCAAA;MAAA,iCAAA;EACA,aAAA;EACA,mBAAA;CCpDH;AACD,yBAAyB;AErUzB;EDdI,4uBAAA;CDsVH;ACpVG;EACI,oiCAAA;CDsVP;AExUG;EACI,wwBAAA;CF0UP;AEzUO;EACI,gvBAAA;CF2UX;AEtUD;EACI,aAAA;EACA,gBAAA;EACA,OAAA;EACA,QAAA;EACA,UAAA;EACA,SAAA;EACA,cAAA;EACA,kCAAA;CFwUH;AErUD;EACI,YAAA;EACA,gBAAA;EACA,UAAA;EACA,WAAA;EACA,aAAA;EACA,aAAA;EACA,iBAAA;EACA,qBAAA;EDxBA,6CAAA;CDgWH;AEhVD;EAYQ,YAAA;EACA,mBAAA;EACA,kBAAA;CFuUP;AErVD;EAiBY,YAAA;EACA,sBAAA;EACA,oBAAA;EACA,aAAA;ED5DR,uBAAA;CDoYH;AErUW;EACI,eAAA;CFuUf;AEpUW;EACI,oBAAA;CFsUf;AEhUD;EACI,aAAA;EACA,cAAA;EACA,kBAAA;CFkUH;AErUD;EAKQ,aAAA;EACA,YAAA;EACA,6BAAA;EACA,gBAAA;EACA,aAAA;EACA,sBAAA;EACA,kBAAA;CFmUP;AE9UD;EAcQ,oBAAA;EACA,aAAA;CFmUP;AE/TD;EAEI,mBAAA;EACA,aAAA;CFgUH;AE7TD;EACI,4gBAAA;CF+TH;AE7TG;EACI,gXAAA;CF+TP;AE3TD;EACI,oSAAA;CF6TH;AE3TG;EACI,wRAAA;CF6TP;AEzTD;EAEQ,gBAAA;EACA,6BAAA;EACA,YAAA;EACA,aAAA;EACA,aAAA;EACA,sBAAA;EACA,mCAAA;CF0TP;AExTO;EACI,uBAAA;CF0TX;AErUD;EAgBQ,oqBAAA;CFwTP;AEtTO;;EACI,gcAAA;CFyTX;AE5UD;EAgBQ,gwBAAA;CF+TP;AE7TO;;EACI,4fAAA;CFgUX;AEnVD;EAgBQ,g0BAAA;CFsUP;AEpUO;;EACI,4oBAAA;CFuUX;AE1VD;EAgBQ,w6BAAA;CF6UP;AE3UO;;EACI,4pBAAA;CF8UX;AEjWD;EAgBQ,okCAAA;CFoVP;AElVO;;EACI,ogCAAA;CFqVX;AExWD;EAgBQ,4iCAAA;CF2VP;AEzVO;;EACI,g/BAAA;CF4VX;AE/WD;EAgBQ,w/BAAA;CFkWP;AEhWO;;EACI,wjCAAA;CFmWX;AElUD;EACI,iBAAA;EACA,qBAAA;CFoUH;AEtUD;EAKQ,kBAAA;EACA,kBAAA;CFoUP;AE1UD;EASY,gBAAA;CFoUX;AElUW;EACI,2BAAA;CFoUf;AE9TD;EACI,2BAAA;CFgUH;AE7TD;EACI,aAAA;EACA,eAAA;EACA,eAAA;CF+TH;AElUD;EAMQ,kBAAA;CF+TP;AE3TD;EACI,cAAA;EACA,aAAA;EACA,kBAAA;EACA,oBAAA;EACA,iBAAA;CF6TH;AE1TD;EACI,mBAAA;EAEA,QAAA;EACA,SAAA;EACA,eAAA;EACA,aAAA;EDzMA,kfAAA;CDqgBH;AExTD;EACI,uBAAA;EACA,mBAAA;EACA,UAAA;EACA,WAAA;EACA,kBAAA;EACA,0BAAA;KAAA,uBAAA;MAAA,sBAAA;UAAA,kBAAA;EDpOA,cAAA;CD+hBH;AEtTD;EACI,4BAAA;CFwTH;AErTD;EACI,aAAA;EACA,mBAAA;EACA,OAAA;EACA,QAAA;EACA,UAAA;EACA,SAAA;EACA,iBAAA;CFuTH;AEpTD;EACI,aAAA;EACA,gBAAA;CFsTH;AACD,uBAAuB;AACvB,2BAA2B;AGhjB3B;EFQI,4zCAAA;CD2iBH;ACziBG;EACI,orCAAA;CD2iBP;AACD,yBAAyB;AACzB,6BAA6B;AIxjB7B;EACI,wTAAA;CJ0jBH;AIvjBD;EACC,cAAA;EACA,mBAAA;CJyjBA;AItjBD;EACC,YAAA;CJwjBA;AIrjBD;EACC,aAAA;EACA,kBAAA;CJujBA;AIpjBD;EACC,WAAA;CJsjBA;AACD,iCAAiC;AK1kBjC;EACE,aAAA;CL4kBD;AKzkBD;EACE,aAAA;EACA,mBAAA;EACA,onBAAA;CL2kBD;AKxkBD;EACE,onBAAA;CL0kBD;AKvkBD;EACE,cAAA;CLykBD;AACD,+BAA+B;AAC/B,gCAAgC;AM5lBhC;EACE,kBAAA;CN8lBD;AM3lBD;EACE,eAAA;EACA,mBAAA;CN6lBD;AACD,8BAA8B","file":"diva.css","sourcesContent":["@import (reference) \"variables.less\";\n@import (reference) \"mixins.less\";\n\n.diva-wrapper {\n min-height: 100%;\n width: 100%;\n flex-grow: 1;\n\n &.diva-wrapper-flexbox {\n display: flex;\n flex-direction: column;\n }\n\n >*:not(.diva-outer) {\n flex-shrink: 0;\n }\n}\n\n.diva-title {\n text-align: center;\n font-weight: bold;\n font-size: 1.3em;\n max-width: 50em;\n margin: 0 auto;\n}\n\n.diva-button, .diva-input {\n box-sizing: border-box;\n outline: none;\n border-radius: 0;\n font: inherit;\n vertical-align: middle;\n\n &::-moz-focus-inner {\n padding: 0;\n }\n}\n\n.diva-button {\n display: inline-block;\n cursor: pointer;\n height: @buttonSize;\n width: @buttonSize;\n\n line-height: @buttonSize;\n -webkit-appearance: none;\n padding: 0;\n\n background-color: @buttonBg;\n background-repeat: no-repeat;\n background-position: center;\n .frame(@buttonFrame);\n\n &:hover, &:focus {\n background-color: @buttonHover;\n }\n\n &.diva-button-text {\n width: auto;\n padding: 0 @buttonPadding;\n }\n}\n\n.diva-input {\n height: @inputSize;\n .frame(@inputFrame);\n\n padding: 0 @inputPadding;\n\n &:focus {\n border-color: @inputHoverFrame;\n }\n}\n\n.diva-label {\n margin: 0 @toolbarGroupMargin;\n line-height: @buttonSize;\n vertical-align: top;\n white-space: nowrap;\n}\n\n.diva-tools-left, .diva-tools-right {\n margin-bottom: @toolbarGroupMargin;\n}\n\n.diva-tools-left {\n float: left;\n user-select: none;\n}\n\n .diva-zoom-out-button, .diva-grid-out-button {\n background-image: data-uri(\"@{iconPath}zoomout.png\");\n }\n\n .diva-zoom-in-button, .diva-grid-in-button {\n background-image: data-uri(\"@{iconPath}zoomin.png\");\n margin-left: -1px;\n }\n\n.diva-tools-right {\n float: right;\n\n .diva-button {\n margin-left: -1px;\n user-select: none;\n }\n}\n\n .diva-page-nav {\n white-space: nowrap;\n margin-right: @toolbarGroupMargin;\n }\n\n .diva-goto-form {\n display: inline-block;\n position: relative;\n }\n\n .diva-goto-page-input {\n width: 5em;\n }\n\n .diva-input-suggestions {\n display: none;\n box-sizing: border-box;\n position: absolute;\n width: 100%;\n background-color: white;\n border: solid 1px #aaa;\n border-top: none;\n z-index: 1;\n }\n\n .diva-input-suggestion {\n box-sizing: border-box;\n width: 100%;\n margin-top: 3px;\n padding: 2px;\n padding-left: 5px;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n cursor: pointer;\n }\n\n .diva-input-suggestion.active, .diva-input-suggestion:hover {\n background-color: @highlightBlue;\n }\n\n .diva-fullscreen-icon {\n background-image: data-uri(\"@{iconPath}fullscreen.png\");\n }\n\n .diva-toggle-nonpaged-icon {\n background-image: data-uri(\"@{iconPath}toggle-nonpaged.png\");\n }\n\n .diva-toggle-nonpaged-icon-active {\n background-image: data-uri(\"@{iconPath}toggle-nonpaged-active.png\");\n }\n\n .diva-view-menu {\n display: inline-block;\n position: relative;\n }\n\n .diva-view-options {\n position: absolute;\n top: @buttonSize;\n z-index: 1;\n display: none;\n box-shadow: 1px 1px 4px 0 rgba(0,0,0,0.1);\n }\n\n .diva-view-options .diva-button {\n margin-top: -1px;\n display: block;\n }\n\n .diva-document-icon {\n background-image: data-uri(\"@{iconPath}document.png\");\n }\n\n .diva-grid-icon {\n background-image: data-uri(\"@{iconPath}grid.png\");\n }\n\n .diva-book-icon {\n background-image: data-uri(\"@{iconPath}book.png\");\n }\n\n .diva-link-icon {\n background-image: data-uri(\"@{iconPath}link.png\");\n }\n\n .diva-zoom-label, .diva-grid-label, .diva-page-label {\n display: inline-block;\n }\n\n.diva-fullscreen-tools {\n position: fixed;\n top: 15px;\n right: 30px;\n z-index: @fullscreenZIndex + 1;\n padding: 15px;\n .frame(@toolsFrame);\n background: @toolsBg;\n .pretty-shadow;\n\n .diva-tools-left, .diva-tools-right {\n margin-bottom: 0;\n }\n\n .diva-tools-right {\n margin-left: 2em;\n }\n\n .diva-label, .diva-page-label {\n margin: 0;\n }\n\n /* prevent variable number of digits in labels from resizing .diva-fullscreen-tools */\n .diva-zoom-label, .diva-grid-label, .diva-page-label {\n width: 8em;\n display: block;\n }\n\n .diva-page-nav {\n margin-right: 0;\n }\n}\n\n.diva-outer {\n display: flex;\n clear: both;\n background: @viewerBg;\n .frame(@viewerFrame);\n position: relative;\n overflow: hidden;\n min-height: 100px;\n min-width: 200px;\n height: 700px;\n flex-grow: 1;\n}\n\n.diva-viewer-canvas {\n position: absolute;\n top: 0;\n left: 0;\n}\n\n.diva-viewport {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n overflow: auto;\n}\n\n .diva-inner {\n .grab;\n position: relative;\n overflow: hidden;\n margin: 0 auto;\n\n &.diva-grabbing {\n .grabbing;\n }\n }\n\n .diva-page {\n box-shadow: 7px 7px 6px -6px rgba(0,0,0,0.3);\n position: absolute;\n background-color: @pageBg;\n }\n\n.diva-page-tools-wrapper {\n position: absolute;\n z-index: 3;\n}\n\n.diva-page-tools {\n position: relative;\n top: -@pluginIconSize;\n height: @pluginIconSize;\n\n div {\n display: inline-block;\n height: @pluginIconSize;\n width: @pluginIconSize;\n cursor: pointer;\n }\n}\n\n.diva-fullscreen {\n .full-width;\n .full-height;\n z-index: @fullscreenZIndex;\n position: fixed !important;\n top: 0;\n left: 0;\n margin: 0;\n border: 0;\n}\n\n.diva-popup {\n background: @linkBg;\n .frame(@buttonFrame);\n padding: .6em;\n z-index: @fullscreenZIndex + 1;\n position: absolute;\n .pretty-shadow;\n}\n\n.diva-link-popup {\n font-size: 10pt;\n\n input {\n width: 18em;\n &:focus {\n outline: none;\n }\n }\n\n &.in-fullscreen {\n top: 150px;\n right: 30px;\n }\n}\n\n// Used for body in fullscreen mode\n.diva-hide-scrollbar {\n overflow: hidden !important;\n}\n\n.diva-slider {\n position: relative;\n top: 0.6em;\n float: left;\n @media (max-width: 480px) {\n width: 100px;\n }\n}\n\n// The loading indicator, shown if the AJAX request is slow\n.diva-throbber {\n .hidden;\n position: absolute;\n width: @throbberWidth;\n height: @throbberHeight;\n .loading;\n background-color: @white;\n border: 1px solid @grey;\n .pretty-shadow;\n top: 50%;\n left: 50%;\n margin-left: -@throbberWidth / 2;\n margin-top: -@throbberHeight / 2;\n}\n\n// Error message box, only shown if there is an error\n.diva-error {\n position: absolute;\n width: 400px;\n height: 200px;\n background-color: #fff;\n border: 1px solid #ddd;\n box-shadow: 2px 2px 4px 0 rgba(0,0,0,0.5);\n top: 50%;\n left: 50%;\n margin-left: -220px;\n margin-top: -120px;\n z-index: 120;\n padding: 0 1em;\n}\n\n.diva-error-close {\n width: 18px;\n height: 18px;\n border: none;\n background: #fff data-uri(\"@{iconPath}close.png\");\n position: absolute;\n top: 1em;\n right: 1em;\n\n &:hover {\n background-image: data-uri(\"@{iconPath}close-hover.png\");\n cursor: hand;\n }\n}\n\n.diva-modal {\n position: absolute;\n width: 32em;\n background-color: #fff;\n border: 1px solid #ddd;\n box-shadow: 2px 2px 4px 0 rgba(0,0,0,0.5);\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n z-index: 120;\n padding: 2em 2.2em;\n}\n\n",".diva-wrapper {\n min-height: 100%;\n width: 100%;\n flex-grow: 1;\n}\n.diva-wrapper.diva-wrapper-flexbox {\n display: flex;\n flex-direction: column;\n}\n.diva-wrapper > *:not(.diva-outer) {\n flex-shrink: 0;\n}\n.diva-title {\n text-align: center;\n font-weight: bold;\n font-size: 1.3em;\n max-width: 50em;\n margin: 0 auto;\n}\n.diva-button,\n.diva-input {\n box-sizing: border-box;\n outline: none;\n border-radius: 0;\n font: inherit;\n vertical-align: middle;\n}\n.diva-button::-moz-focus-inner,\n.diva-input::-moz-focus-inner {\n padding: 0;\n}\n.diva-button {\n display: inline-block;\n cursor: pointer;\n height: 34px;\n width: 34px;\n line-height: 34px;\n -webkit-appearance: none;\n padding: 0;\n background-color: #F1F1F1;\n background-repeat: no-repeat;\n background-position: center;\n border: 1px solid #AAA;\n}\n.diva-button:hover,\n.diva-button:focus {\n background-color: #FDFDFD;\n}\n.diva-button.diva-button-text {\n width: auto;\n padding: 0 0.5em;\n}\n.diva-input {\n height: 34px;\n border: 1px solid #AAA;\n padding: 0 0.5em;\n}\n.diva-input:focus {\n border-color: #919191;\n}\n.diva-label {\n margin: 0 1em;\n line-height: 34px;\n vertical-align: top;\n white-space: nowrap;\n}\n.diva-tools-left,\n.diva-tools-right {\n margin-bottom: 1em;\n}\n.diva-tools-left {\n float: left;\n user-select: none;\n}\n.diva-zoom-out-button,\n.diva-grid-out-button {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAIklEQVR42mNgGAWjYBQQB3x9ff9TgkcNJmzwKBgFowAVAACElnmBtJelAAAAAABJRU5ErkJggg==\");\n}\n.diva-zoom-in-button,\n.diva-grid-in-button {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAKElEQVR42mNgGAWkAF9f3//IeNTgkWQwugGk4lGDqRf2o+l41OCRAgDiStSheMjqggAAAABJRU5ErkJggg==\");\n margin-left: -1px;\n}\n.diva-tools-right {\n float: right;\n}\n.diva-tools-right .diva-button {\n margin-left: -1px;\n user-select: none;\n}\n.diva-page-nav {\n white-space: nowrap;\n margin-right: 1em;\n}\n.diva-goto-form {\n display: inline-block;\n position: relative;\n}\n.diva-goto-page-input {\n width: 5em;\n}\n.diva-input-suggestions {\n display: none;\n box-sizing: border-box;\n position: absolute;\n width: 100%;\n background-color: white;\n border: solid 1px #aaa;\n border-top: none;\n z-index: 1;\n}\n.diva-input-suggestion {\n box-sizing: border-box;\n width: 100%;\n margin-top: 3px;\n padding: 2px;\n padding-left: 5px;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n cursor: pointer;\n}\n.diva-input-suggestion.active,\n.diva-input-suggestion:hover {\n background-color: #dfefff;\n}\n.diva-fullscreen-icon {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAAgRJREFUeNq8VrGuokAUPaOEarcwMfrgIyxMLAx/YKGNtRWFfgGJJohWWmmpITbWNvoPtBZ+g4GHITEGtyHobLO4iMAbfS/ebkjmHO655947hFKKdwShlKJeryeybTYbQghJBWHByOBNwUWZXwWKuxvOkmMB+Yk6xhIl6V0ulz8Hg4EAALIsW7Ztf7Bmx1yjRqMBTdMESikopdB1XZAkiTkjZiLHce7OnudlXNd9zt6s0kmSBEVRiO/7RNO06263YzYGBwDhPgkTi6II0zRvZ8MwMB6PKQBESQRBgGVZ/zOIYCZK12w2MZvNSKVSuftuGAYMw3jIdD6fk1qt9lyNisWi2Wq1CAAoipItlUqJAIGcANBut0m1Wv2TWKNomoSQOwnP5/OvTqfjnk6nu8u5XA66rmd5nr+GJYvD/NJ1nudlRqPRAwkAHI9HTCaTy8v2lmXZAgDf98lwOLwkuStqEADo9/sW82SwbftjsVhQx3Ee3BU0adgQAVk+n8d2u2UfQQCwXq9T+8h13bs+ijoxVrpgrKQNz7C7OI6jqqqmujGKmQkmQdriEkXxRhIEz/NXVVWzhUIhkSyMyzTrTNPEcrl8+JHpdHo5HA6vr4m4WK1W2O/3bq/X+/3PmaZt29/bR2mbttvt3hT99uJ7GB8Mj5OniOIMwfqOSDPTU4vvR95174i/AwDgSxraLsuBgwAAAABJRU5ErkJggg==\");\n}\n.diva-toggle-nonpaged-icon {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4AgTEBEfaruPBwAAAKNJREFUSMfdVcENgCAMbI0zdQGWghfw6lQswFL40lQkoiKReD/aArnrFTClBGcwxjgAsHk8xohyTUSlg/wEdVh4DjtBZ8x3ipkZT9IoZN3k6s7ge4lyt1yB3NOdAWqtXYMVPTO7PKiU2vWgyeev2vQq5FTPNZ9LuiGEg8/Ht2mJDRGVYukTBr0v8FWJ1sZmf0Qpj7+U6G/P9Z0JHUoi3+LzWsECD3Iw40bs39cAAAAASUVORK5CYII=\");\n}\n.diva-toggle-nonpaged-icon-active {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4AgQERwL1rjg7gAAAJRJREFUSMfdVFsOgCAM24wng4PBDtaz4ZcJmvESUbR/sIXSrRuHECgHa60nIqeE+HTWHhKuIEgl1BDQQoOxtiQD4EyYNdXDFUxRIr7wLj+mgI0xKZ/XQAB4xdqHHriOD7pbbdqAoBJoPo/lAihN9+STHKtR7t7ZRaMJpFiivbGlxqcm/vvL7mfrumVCpyqR9Pi8lLABZfMqIZXz4SkAAAAASUVORK5CYII=\");\n}\n.diva-view-menu {\n display: inline-block;\n position: relative;\n}\n.diva-view-options {\n position: absolute;\n top: 34px;\n z-index: 1;\n display: none;\n box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);\n}\n.diva-view-options .diva-button {\n margin-top: -1px;\n display: block;\n}\n.diva-document-icon {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAYCAYAAADOMhxqAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAAsSURBVDiNY/T19f3PQAJgIkUxAwMDA+P//yRZQIYNNPfDqIZRDUNHw3DIcQDkTQvYVGzS1gAAAABJRU5ErkJggg==\");\n}\n.diva-grid-icon {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAABfSURBVDiNY/T19X3AwMAgz4AKHm7atEmBgYGBwc/Pjyx5JiyCDGhiZMkzYRGkChiaBj/EIv4QB5toecb///9T4jCcgGZBwTiajmFgaBo8mo4ZGBhG0zESGJoG0yQdAwD6QT53wkiu4gAAAABJRU5ErkJggg==\");\n}\n.diva-book-icon {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADtJREFUeNpi/P//PwMtABMDjQDNDGbx8/MjKiw2bdrECKKJVT/0gmLU4FGDRw0eNXhADWYcrZpgACDAAPfJDBBti7cPAAAAAElFTkSuQmCC\");\n}\n.diva-link-icon {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAXCAYAAAALHW+jAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAANFSURBVDiNjZRPaBx1FMc/b3banUgVQQ8boUURoSIWE8GCYINtDjUwv91Esxdb8F9NDlURclAohsWDglQRjHVFbKuguLKSnclqKigqBS9uFKSCiTRYCxGxejC4m+z+5nlwpo6bjeZ3+r3v+77PvPdmGFFVtnoKhcLeKIqeA24DLqlqva+v71ilUllNPLJVoO/7R0TkBJDpSi1FUXRwbm7u/JaB+Xz+kKqeBpxNLD86jnPX7OzsT/8LNMbcC7yX6uxrx3GOqupuVX0F6AMQkW9yudwd/wk0xtwDzALbY+nc+vr6vvn5+d8AfN8fEZFZYFucf2qzETDGDAHVBCYii9ba4QQGEIbhh8BUquy+nsB8Pj8AhMk4wHK73T5Qr9d/7vZ6nnc6Fd68ATgxMbFNVU8BV8adXcxkMvuz2exqPp9/tlgs/ustN5vNYiq8sAG4srIyDOyJw1+jKNofRdEla+28qh5rtVonS6WSA+D7/qiIvJrUisi7vUbenbq/HYbhEnAI2BtrhxcWFl6Tv88A4MawRi6Xe34DUEQupsI7RURqtdoJEZlJRFU9YoyZFJEXgF+A71T1YLlcbl/+bMbGxq6x1u7JZDLnOp3OMnBFXP96GIaT8YhvAg/E+qrrutdba4dc1/2yWq2uQPzlj4yMXGWtPaOqp1zX/UNEnkl1+ajv+y+rqnqe9wjwbazvsNYO1Wq1DxIYgFMqlRzXdUNVvR3Ytba2NjU4OPiSiLyVgj5mjHmyUqlYVf00pd/QvTKn0Wg8Duz7Zz26Mj09HWWz2YeA9+O9LorIO4VCYaeIjCfFURSd3wBM7QTg6SAI3gCoVCq2v7//fqDcbrcPdDodiaLoE+C62LssIme6gS5wY/JAz/Nm0slyudwGJo0x1wKfATfFqXXgwSAI/uzV4VJybzabY92G0dHRq4GPgVtiqQMUgyD4vNubAKtJICLlQqEwnMTFYnGHtfYjYCCZQkQOB0FQ6wUDkPHx8e2tVusr4NZYa6rqEyLSAF4EhmJdVfXhMAxPbgaD+I9tjNkFnAV2bmZU1aNhGM5slk+OAxAEwQVr7TDwQy+WiExtBXYZCFCv1xc9zxsAjgPfA78DXwB312q141uBAfwFPr5cDatao0oAAAAASUVORK5CYII=\");\n}\n.diva-zoom-label,\n.diva-grid-label,\n.diva-page-label {\n display: inline-block;\n}\n.diva-fullscreen-tools {\n position: fixed;\n top: 15px;\n right: 30px;\n z-index: 101;\n padding: 15px;\n border: 1px solid #DDD;\n background: #FFF;\n box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.5);\n /* prevent variable number of digits in labels from resizing .diva-fullscreen-tools */\n}\n.diva-fullscreen-tools .diva-tools-left,\n.diva-fullscreen-tools .diva-tools-right {\n margin-bottom: 0;\n}\n.diva-fullscreen-tools .diva-tools-right {\n margin-left: 2em;\n}\n.diva-fullscreen-tools .diva-label,\n.diva-fullscreen-tools .diva-page-label {\n margin: 0;\n}\n.diva-fullscreen-tools .diva-zoom-label,\n.diva-fullscreen-tools .diva-grid-label,\n.diva-fullscreen-tools .diva-page-label {\n width: 8em;\n display: block;\n}\n.diva-fullscreen-tools .diva-page-nav {\n margin-right: 0;\n}\n.diva-outer {\n display: flex;\n clear: both;\n background: #F1F1F1;\n border: 1px solid #AAA;\n position: relative;\n overflow: hidden;\n min-height: 100px;\n min-width: 200px;\n height: 700px;\n flex-grow: 1;\n}\n.diva-viewer-canvas {\n position: absolute;\n top: 0;\n left: 0;\n}\n.diva-viewport {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n overflow: auto;\n}\n.diva-inner {\n cursor: url(\"data:application/octet-stream;base64,AAACAAEAICACAAcABQAwAQAAFgAAACgAAAAgAAAAQAAAAAEAAQAAAAAAAAEAAAAAAAAAAAAAAgAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAfwAAAP+AAAH/gAAB/8AAA//AAAd/wAAGf+AAAH9gAADbYAAA2yAAAZsAAAGbAAAAGAAAAAAAAA//////////////////////////////////////////////////////////////////////////////////////gH///4B///8Af//+AD///AA///wAH//4AB//8AAf//AAD//5AA///gAP//4AD//8AF///AB///5A////5///8=\"), pointer;\n position: relative;\n overflow: hidden;\n margin: 0 auto;\n}\n.diva-inner.diva-grabbing {\n cursor: url(\"data:application/octet-stream;base64,AAACAAEAICACAAcABQAwAQAAFgAAACgAAAAgAAAAQAAAAAEAAQAAAAAAAAEAAAAAAAAAAAAAAgAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAfwAAAP+AAAH/gAAB/8AAAH/AAAB/wAAA/0AAANsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////////////////////////////////////////////////////////////////////////////////////gH///4B///8Af//+AD///AA///wAH//+AB///wAf//4AH//+AD///yT/////////////////////////////8=\"), move !important;\n}\n.diva-page {\n box-shadow: 7px 7px 6px -6px rgba(0, 0, 0, 0.3);\n position: absolute;\n background-color: #FDFDFD;\n}\n.diva-page-tools-wrapper {\n position: absolute;\n z-index: 3;\n}\n.diva-page-tools {\n position: relative;\n top: -25px;\n height: 25px;\n}\n.diva-page-tools div {\n display: inline-block;\n height: 25px;\n width: 25px;\n cursor: pointer;\n}\n.diva-fullscreen {\n width: 100% !important;\n max-width: 100% !important;\n height: 100% !important;\n max-height: 100% !important;\n z-index: 100;\n position: fixed !important;\n top: 0;\n left: 0;\n margin: 0;\n border: 0;\n}\n.diva-popup {\n background: #FFF;\n border: 1px solid #AAA;\n padding: .6em;\n z-index: 101;\n position: absolute;\n box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.5);\n}\n.diva-link-popup {\n font-size: 10pt;\n}\n.diva-link-popup input {\n width: 18em;\n}\n.diva-link-popup input:focus {\n outline: none;\n}\n.diva-link-popup.in-fullscreen {\n top: 150px;\n right: 30px;\n}\n.diva-hide-scrollbar {\n overflow: hidden !important;\n}\n.diva-slider {\n position: relative;\n top: 0.6em;\n float: left;\n}\n@media (max-width: 480px) {\n .diva-slider {\n width: 100px;\n }\n}\n.diva-throbber {\n display: none;\n position: absolute;\n width: 50px;\n height: 50px;\n background: url(\"data:image/gif;base64,R0lGODlhEAAQAPIAAPHx8QAAALi4uD4+PgAAAFxcXHt7e4qKiiH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAADMwi63P4wyklrE2MIOggZnAdOmGYJRbExwroUmcG2LmDEwnHQLVsYOd2mBzkYDAdKa+dIAAAh+QQJCgAAACwAAAAAEAAQAAADNAi63P5OjCEgG4QMu7DmikRxQlFUYDEZIGBMRVsaqHwctXXf7WEYB4Ag1xjihkMZsiUkKhIAIfkECQoAAAAsAAAAABAAEAAAAzYIujIjK8pByJDMlFYvBoVjHA70GU7xSUJhmKtwHPAKzLO9HMaoKwJZ7Rf8AYPDDzKpZBqfvwQAIfkECQoAAAAsAAAAABAAEAAAAzMIumIlK8oyhpHsnFZfhYumCYUhDAQxRIdhHBGqRoKw0R8DYlJd8z0fMDgsGo/IpHI5TAAAIfkECQoAAAAsAAAAABAAEAAAAzIIunInK0rnZBTwGPNMgQwmdsNgXGJUlIWEuR5oWUIpz8pAEAMe6TwfwyYsGo/IpFKSAAAh+QQJCgAAACwAAAAAEAAQAAADMwi6IMKQORfjdOe82p4wGccc4CEuQradylesojEMBgsUc2G7sDX3lQGBMLAJibufbSlKAAAh+QQJCgAAACwAAAAAEAAQAAADMgi63P7wCRHZnFVdmgHu2nFwlWCI3WGc3TSWhUFGxTAUkGCbtgENBMJAEJsxgMLWzpEAACH5BAkKAAAALAAAAAAQABAAAAMyCLrc/jDKSatlQtScKdceCAjDII7HcQ4EMTCpyrCuUBjCYRgHVtqlAiB1YhiCnlsRkAAAOwAAAAAAAAAAAA==\") no-repeat center;\n background-color: #FFF;\n border: 1px solid #DDD;\n box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.5);\n top: 50%;\n left: 50%;\n margin-left: -25px;\n margin-top: -25px;\n}\n.diva-error {\n position: absolute;\n width: 400px;\n height: 200px;\n background-color: #fff;\n border: 1px solid #ddd;\n box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.5);\n top: 50%;\n left: 50%;\n margin-left: -220px;\n margin-top: -120px;\n z-index: 120;\n padding: 0 1em;\n}\n.diva-error-close {\n width: 18px;\n height: 18px;\n border: none;\n background: #fff url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAQVJREFUeNqslLEOgjAQhq+NkwnExAcSGE1gchBnH8tVXNycmIhvJBAGEhO8n7SJIqXFeMklbbl+vR5/T3RdR0mSLInozF7WdX0siuJJExaG4cLzvBMP123b7vM8b0Qcx4Dc2CMECSGuVVWlJhggvu9fOIGdWrqzb6XKJNKBCEAgNjhAYBv2DKByuGEMZoBoe4ggCIwB+poY22IEij11GgJ1liYI6tmDHFKnKQjmUn/AQp+iymAO5APkCjPJQ9KfTDroxCqND9CcYo/BpA2CmozVbAj7myD7V2wTm8o6ZdiXMDFnRoOrrV1+sUUaK4l+oloB2dqIAYa9B/HW2DK84l8b20uAAQCLjwLqt9305AAAAABJRU5ErkJggg==\");\n position: absolute;\n top: 1em;\n right: 1em;\n}\n.diva-error-close:hover {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJFJREFUeNqslLEKwCAMREPpVP9/756hgnOhf5ZGuYIUSSxN4JZ4PKPRkIiQxqY6VLtqrTlL1QNvUSXkGuRUCcQWDBDu/BcYrRJ5aQgbQB5lQoniwQyIgGEaGOu+Z2I39iCNMVm6f/TJy3SbQR86Y3Z0oagIP1rIZYe0P+xBRn6REvVpE0bBvzHSDbb8Z7DdAgwARUeIgUWvd3IAAAAASUVORK5CYII=\");\n cursor: hand;\n}\n.diva-modal {\n position: absolute;\n width: 32em;\n background-color: #fff;\n border: 1px solid #ddd;\n box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.5);\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n z-index: 120;\n padding: 2em 2.2em;\n}\n/* Begin canvas plugin */\n.diva-canvas-icon {\n background: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAATCAYAAAB/TkaLAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAatJREFUeNqMlD0vBVEQhnfX4SL2NiI+Cm5Dp5f4C26hUVBpCQqtSkLDr1CpdKKQkIheS0mHm3ARXHHPek8yE6/JWUzyZD/mzOy8c+ZsWq/XE9g02AedoAUm5BqsBs5AF3gAk+BTfBz3AcZDXCbOTIIK0AN88m2D5OuXaxKJ69Y4J04vlYUFb7JY7Y7uH0FKCS/BhiT1ks87WlApqTQx1aktg1XQJ/6QYwWcZP8IVkupykQS5OQLsSNg3v0mA7TNB/mjB2AO9JLae3ARgpfAWkwGWDcVcqXb4BCMSVzwXYFrJ33JyZGIjAVJWiV5jpI+gWewS++GtOQg45V2PFwb4FieK0Z+ByXJTXsqOlJWhvb4mkZKp6Ft+hzdXCcygu3Q+xqdKN7domQqfiRnySkFx4LSSMIsNnva+GYkid7fglmqhv1NefZcjKOdLCLVzIBN2RzdpKb8SErjnJFvG78IhuldWDNg5BdlPclL+nkk46b91nHjkcpsMVpptWRn98A5mKKROiV/9S/5PtLTlvx8t2jNqFHqrUpNGo7bu/xoXyKJb+S0NIyiaNyXAAMAV9J7QqwGuvAAAAAASUVORK5CYII=\") no-repeat;\n}\n.diva-canvas-icon:hover {\n background: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAATCAYAAAB/TkaLAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAApVJREFUeNqEVMuKGkEUrW7bd3zEgGAkgmRQXPhYCKO7EZcB98GFCzchCeRD3BrIxh/wE2Q+YBZuBtyJDyQk0TCJj/Hdtjm3Uz1pZkpzoeiqOnXq3nPr3laOxyNLJpPFw+FwvdlsmMvlYjBnp9PZ0ATYBbAux5bY8gNTY7EYs9vtT3iYb2SaaZomr9drJkkSWywWzGq1auyfvSQSx9zAjrSZSCSEvFwux/RLZVnWnE4no6g9Hg/b7/eyceNyufxGJDJFUebT6VRflMtlBWc7mH6iAQcfQqGQrVAo2BRzpLhc9xgIBMyRCm0ymdzCeQLTIw+MQVF9NBpNlf+RjSgNIzJZrVYLWSwWCWuJq2CDwYD1+32f3Gw2hTIajYaNqxA6q1Qq916vV08ZmaqqLBwOs1KptFfOycAygEglIj6OOJvNFlut1uvZbPaKMDg/+ny+QSaTuZMikcgvyHhuJlF0uEgbDoeWdDp9OZ/Pb8gZ9pf4+nu9nlqtVlm73b7EG9wQF5FqUGjJ5/NMPieD1tvt1mbOJ87p74Ao6VGfmSpDGo/HDqSTKedk0GGk5rvxOLADzqg0QU0KH9HhcDA9X9FotIiNa45RyC5I1DsK2AWwLsfmGC9IPsee8DD+dhQ8yoZ8QUlJZzAhT78UJTUXgciPHAwGfwC7wvJqt9u9icfjD7k4xdOTvlqtfpvyZu6az8jpWzrCcyah3NyYes/xFEOGSB66Jo5y84HoM3eNWb6Ip2/iZ+IXdQ7K7aeo3Aw7xdMvRTl5HpcH75r3iDSD6UcaiPgdnMQM/BRP5rLAtRi1Jhl5QgPcgbgBVseyjnNfut3ug34Rj4aeU3i/x8se8O9kbrdbNQ5ybAvsK8cWBpZKpYQ8StUfAQYA90WC9GAOvOkAAAAASUVORK5CYII=\") no-repeat;\n}\n.diva-canvas-icon.new {\n background: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAATCAYAAAB/TkaLAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAb9JREFUeNqElM0rRVEUxc+97/J8xktRJsxkwpBShgwMzVBShsyUgVI+/gEzU0bMFTOlpIwoExNhQpF6+S7utQ7rsJx3Hrt+9exz1j57nbuPaH7z0iAmwCKoBC+gCxTNV/SBDVDBXDf3ON0Cda9OF3Mx5kIKasCb+Yl2FrRR4B4jujzIQLXTJVxMeZIt/CR5GxcU2bhnIcO9B2BNatjCaeKdmOqJEpEUdjEHRkAddbbWINiPTWlEJhx+fhTU83eOhVvBcCI21tnNtw3wTFEWOGQHDHFvxsI34DgJ2Mg5G2CKHcZc0+Kr4Ai0Se4UnNmiY6BW7jZzNli0WezrBzwBHWBZ1ltckW1+cSP3cwt2+bez564mL3sbvbUGN1JqI+OJnzYoPBfbbvRC8X01CW30gEkWtMJOeVH/TUZJTl9ULJ36oqjMFMShvLv4uzKWcryKWQrfmTOeLvLtG85XGjh1hkOeyKuZBr2iK5nhRDoKPccBjonmCp6TSD7irztpkt96p4fgURzEHDcjuqhcpwXpRrtaAXugX7rZ8rr+034aOPWa739cnuqSZ79E54oW+d+8Suy6eABXfElFr7Og7kOAAQDbb3wSAOBcfAAAAABJRU5ErkJggg==\") no-repeat;\n}\n.diva-canvas-icon.new:hover {\n background: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAATCAYAAAB/TkaLAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAa5JREFUeNqMlD8vRFEQxd977lrEakT8KdhKp5f4CCoaUesIEi2diAifQkOj3UqyBb1GQUmHTVgEK/Y95ybnxjG5Kyb55e2+uXPunbkzz83tXSawGXAMSqAFJvn0VgVn9D2CKfBFn487At0al9GZ0VGAXpAnPzZMQW+DXJNIXNnGOTr9n08Gv3NxsHsGpeCJzyB4Bbboz6mXO1kQTmNPqpbK7xWwBvop6jVWQT3rEBATK8w7L1Ax/lGw6CSNTSmF47NthFT4BCyAPr7vAg/gwgcvg/VYGmBDMrCZ7IIamJCaX4Mbx7pUTOCYT4OiA5JeSUSfwQs4ENGRcEE+jTfTJg1wyv9lST2kGawignlY6/5Kw7RUwhq3Ixf56xId0/C2L++rMlGJbPavztCJymK7Mijt4Mtiu4Tmb0YCguAdmJep0RM3Yxs6ucnYEMyCbV5O6N8mPyQhrrDl0THVWwy2xCkppHZDJv3C1jWT1ojVp8Z2S6WdGqalstjtJ2zwWE0PwTmYlpaqiz8ap+nnkbZp8ZO4I2vGTfq5TT+I+nH74ES8RoRv6WuYk4W4Ho37FmAALHt+CwITqggAAAAASUVORK5CYII=\") no-repeat;\n}\n#diva-canvas-backdrop {\n z-index: 105;\n position: fixed;\n top: 0;\n left: 0;\n bottom: 0;\n right: 0;\n display: none;\n background: rgba(50, 50, 50, 0.9);\n}\n#diva-canvas-tools {\n color: #333;\n position: fixed;\n top: 10px;\n left: 10px;\n width: 230px;\n z-index: 108;\n background: #FFF;\n padding-bottom: 10px;\n box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.5);\n}\n#diva-canvas-tools .action-buttons {\n clear: both;\n margin-bottom: 5px;\n text-align: right;\n}\n#diva-canvas-tools .action-buttons a {\n color: #333;\n text-decoration: none;\n background: #F1F1F1;\n padding: 5px;\n border: 1px solid #AAA;\n}\n#diva-canvas-tools .action-buttons a:last-child {\n border-left: 0;\n}\n#diva-canvas-tools .action-buttons a:hover {\n background: #FDFDFD;\n}\n#diva-canvas-toolbar {\n height: 16px;\n padding: 10px;\n padding-bottom: 0;\n}\n#diva-canvas-toolbar div {\n height: 18px;\n width: 18px;\n background-repeat: no-repeat;\n cursor: pointer;\n z-index: 109;\n display: inline-block;\n margin-right: 5px;\n}\n#diva-canvas-toolbar span {\n vertical-align: top;\n float: right;\n}\n#diva-canvas-toolwindow {\n position: relative;\n margin: 10px;\n}\n#diva-canvas-close {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAQVJREFUeNqslLEOgjAQhq+NkwnExAcSGE1gchBnH8tVXNycmIhvJBAGEhO8n7SJIqXFeMklbbl+vR5/T3RdR0mSLInozF7WdX0siuJJExaG4cLzvBMP123b7vM8b0Qcx4Dc2CMECSGuVVWlJhggvu9fOIGdWrqzb6XKJNKBCEAgNjhAYBv2DKByuGEMZoBoe4ggCIwB+poY22IEij11GgJ1liYI6tmDHFKnKQjmUn/AQp+iymAO5APkCjPJQ9KfTDroxCqND9CcYo/BpA2CmozVbAj7myD7V2wTm8o6ZdiXMDFnRoOrrV1+sUUaK4l+oloB2dqIAYa9B/HW2DK84l8b20uAAQCLjwLqt9305AAAAABJRU5ErkJggg==\");\n}\n#diva-canvas-close:hover {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJFJREFUeNqslLEKwCAMREPpVP9/756hgnOhf5ZGuYIUSSxN4JZ4PKPRkIiQxqY6VLtqrTlL1QNvUSXkGuRUCcQWDBDu/BcYrRJ5aQgbQB5lQoniwQyIgGEaGOu+Z2I39iCNMVm6f/TJy3SbQR86Y3Z0oagIP1rIZYe0P+xBRn6REvVpE0bBvzHSDbb8Z7DdAgwARUeIgUWvd3IAAAAASUVORK5CYII=\");\n}\n#diva-canvas-minimise {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFlJREFUeNpi/P//PwM1ABMDlcCoQUPRIBZfX9+jjIyM2kA2I9RgRjTMgEYjY5j6ayxAQ6yo4CAt6nkNiG8AsQYQ/4fif0hsWP5Bpv9jUXudcTSvDUGDAAIMAJ9XGBGo0H6VAAAAAElFTkSuQmCC\");\n}\n#diva-canvas-minimise:hover {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAE9JREFUeNpi/P//PwM1ABMDlcCoQUPRIEYgPgrE2lA2E5RGxgxoNDKGqb8GIv4PKq+xAPENINaAuuwflEbGDGg0Moapv844mteGoEEAAQYAhHkXuTBtU6sAAAAASUVORK5CYII=\");\n}\n#diva-canvas-buttons div {\n cursor: pointer;\n background-repeat: no-repeat;\n width: 20px;\n height: 20px;\n padding: 5px;\n display: inline-block;\n background-position: center center;\n}\n#diva-canvas-buttons div.clicked {\n background-color: #DDD;\n}\n#diva-canvas-buttons .contrast {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXlJREFUeNq0lb1KxEAUhZPJgqS08BksLERZSJ1CbPLTBUFwW0uF7dZSW42drTZKupg0VqkXgtpYWPkAFjaBNGviOTIJIayLbuKBIXeGvd/M5ObcVcuyVNryPE/L83xXVdUhptWgUg7kpLquPwRB8NnOVdtA13XXsXaN0FAWa4oNR2EYvjYXRU2GHMc5BuxJwt4QXwohdhC/zAEa/C1zmFstDqrAtu0jPM4ZE5Rl2ThJkhnnSJr9cEqdOchlfFFfWV6TJ1vBZvu4xl0zC8BnPDYXXD9H3havL1gA+c6421Ub9kvpZJAlWE35zt6LojhRlpdBlpCfBnUTx/FHByALOxSNb+xR6a7/AfYqIe1EbffAS/sH0uhycmBZ1moXGlmCXYNGx1iDb0878KZkCbYgdg3aB+MQNtxbAkbrjcj6rrJsQRMWCce+hdl90zQHfwBOqjZW90O2INlxzqSv2b7uNU2LYUkf8415JyMsiiK/lKDeG6za91/AlwADAP4sxwU5rOxvAAAAAElFTkSuQmCC\");\n}\n#diva-canvas-buttons .contrast:hover,\n#diva-canvas-buttons .contrast.clicked {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAM1JREFUeNpi/P//PwM6YGRkZAZS7kBsgoRB4AwS3gnU+xdDM8hAZAwE6kB8AiRFAIPUqGPoRzKIEYgLgfgbVMM9IJ4AxC5AfAWHod+gehixGViIpBBkEAuS3AUCri1EMRDqTZBtoDCJwBIMhAz8BvM+CDAjhdlUdMOINBAWpiCzGLygAq+AWJACA0HYiwkpSSwCan7PQBkwQTbwHAPlgDYGUhUwQbMRCBhRwbwzNDUwDlgoCFJqIPUTNtWzHk0KB5oUX9QqYBmpXQUABBgA5FBbDJAAnEYAAAAASUVORK5CYII=\");\n}\n#diva-canvas-buttons .brightness {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAb5JREFUeNqsVM1KAlEUnju5cKH0Bi6rhbToBdIWQuXPboIKX6GdEEWRFIG7HiGIwNkpRtAi6QVaSIS57A1CFy5spu+rM3IbR70LDxzOnXu/78y55+cq3/eteVIsFt9om81meh42ZpmJKc6y9Y9CoVDOZrPGZGLJiXTIA6XUbTKZvHMcZynEzYmOhRhiydGdjqMZDAb3AOxguTccDt9hq8EZcvcZjg6YE2KhdXInHLbb7RH+ekBn8Xj8RoqxCVOBbgjsFVrDD16IAdaCvcL3d+BHTatyqVQ6xtklMdCebK9AfVzztNFoXEfxIh1KZM/QD8/znFar9ds2+Xw+bdu2i+UqdIuRzqyyJrym0p1RuOaeRF2J7C9p2iCXOSkAc9bTnelOwekFecU6BfMkxyPbWrBMy+EDzDautx6OUvLYwfIRt9k1zWGN1WQB6CDkjEXxBWMW4cLahuPECWDTuq77NauxgV0G9oiNDexkY3PQOZsyTucgVec8aWcwFxy9fr9/yEn7l8NEIrEfzCb/GiKnpD3GIpg6OcL9E0YYKJJezmQyMX2PitekSw3vE0uOvqcMX+yuvDpri3qJR6aN/SPAAFsVBiFOQpN5AAAAAElFTkSuQmCC\");\n}\n#diva-canvas-buttons .brightness:hover,\n#diva-canvas-buttons .brightness.clicked {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPlJREFUeNq8VDsOgzAMTSA7c5fODLkDW4/BPVh6Hi7A0nOgirlL5+58aqNHZWgoGaxGeiJ5fjZOeMRO02SOhrW25Sdp/ZHWmbgRqzPJppOSEJ3MWs5ZkbxlbJsDPKkJ6cIjdmZsuBRaXpQfXgicEFxlcgisEQ24r4LirSzMsC4IDeEJ8LxALIN2vZsfHVSEgTASOmAEV+3m7RQrkHgneMF7cMPSaWzBBt34QMwj1oRyLQVa4bMLkQ+yAp/Xi+b5jl06nPOJ5uyAG0J9YrSH9pb/81HUbKNqbPVfT/1yEEVdoJv5DAO8k8VmY0fe2B0slmvdxH2sr98CDAClFhsKAJcnrgAAAABJRU5ErkJggg==\");\n}\n#diva-canvas-buttons .rotation {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAATCAYAAACdkl3yAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAe5JREFUeNqsVM9LAlEQdrdFrdhD2CGCqEsQBVFLUR2iPIo/UAy7FVR0iS4RHetP8BSEYUV18mKprPQD7A8oD4EdOnQoCbqG5Fa72vdslE3MFBv42Nl5b743M2/ecPl83lAuLpdrHJ9FYBYQdUuPQEDTtKAsyy9OpzPGcdwpJMDpiTweT08ulwvDNmSoLp/ANTAByJFIxF4icrvd/SC5gNrJ/nFSGmv7UJPkbGTbAC/pRXmHWApESEWC4RywAB8gWTaZTMehUEgrD4VFjdRSUFuKNuz3CqTvEEmWnYic47/lBJJNPQkTBGMTEI0N+igZVqLRaLxacZD+Ns/ze9irIRL1m1t7ZhGtU3j3ZrP58I8iG2Kx2E0lOw8Mkx6sVJNahRG1UVp3hgaE1xXs6V+IIO2NEilU7KlGicKkr6G7u+px9vl8RrRPIRMetQmQvRU94q+DpElRlDOo7PHO8GjAK/bwaN2LE5ZqIGnOZrMsgGkWDKS7UGxBEObwKd7aLsjCdru9oxKJw+GYRCS3qOkC3falJEn+0uuHcx8+R8AI+bzRy09iTxqOA9DZeBlkd0N7TlRVncdsev0xj6xWqyCK4gbUrbJRUS4P8FtFWeTSBKg0IVG8XkTAHvMYwcI6H7VI4UKSmUzmIJFIKHqfLwEGAAbH1Astu6nmAAAAAElFTkSuQmCC\");\n}\n#diva-canvas-buttons .rotation:hover,\n#diva-canvas-buttons .rotation.clicked {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAATCAYAAACdkl3yAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAWVJREFUeNqslL8vBEEUx2fvRKK4QvYKUYhGIjoUNEJ7KkEvUWh0Eg1/hfpy7iotiRwSEYVCQoKGRETBiUolyBFnfea8kZfN7uXOesknMzvz3nd+7JtngiAwYbBRyMMzBIo7WIUu8GAPFuoxIYFeOA8FR/EBx9Iv21hPBIzneQM0+9BtfuwBinAm3+0wBTPSd/YOvtvJEDzJCnZiDtIxx7a7fg3tcNpNnsjAG+SiBJTQesRR8/bCcrAj25zHuWgaGFcwTNMBNfiU9tHOHYjqddxxmiFF8KAsVmCgZv5oVqhT+lcmgaVUv/JfQtmkQlXpj5uEtiF/7QV6WvlTkuFZ9zomVGJttSCShkPJo1k3WFZii02I2IQsqJglN+HDvZrYtqUiRmQMbpTvbv2ulUM/nCoH+zCPYA2WoQQX8KV8NiETVY/aYEUqQKN6dAuTOva3HoUeZp885hHBl8y/lPpUIq6qY74FGADbGm+BLZVKoQAAAABJRU5ErkJggg==\");\n}\n#diva-canvas-buttons .zoom {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAjpJREFUeNqklEtoE1EUhueGkGysioJQI9aNIApFqA/oRlCpMSVvCBafC0Vw51JXUijFjVAoyIjdFNxEE8hDyULM0heCtLjQjaCLCqKLjJCYzCR+U2/kzjjTBHrgzDnnPv75z73nXNHr9TS3xOPx/UKIo+gE83vQVfx37Xb7da1W+6ltIEIFjMViW4PB4ALuFZ/1BnqzXC4vDQRMpVLHu91uHnevMm+i39FR176nMJ4plUqGGzBgf9Lp9HaAnyhgL4gnDcMYgc1u0zR3MXYe/Sbnp5m/58swkUgs41+0B4jvVKvV2Z7H4WYymZ2dTqcMu0m5drpSqTxzMATskAL23A/MlmKx+AOwC7i/1tkIcfe/lNl77F8QCNzyA+sLR/AZo8vwYC6X2+IARCak32o0Gu+1IYR/vurvb7Vah90M+xexVq/XTW04+aKAj7lveVX6+5LJ5MgwaJzduJLiRweg3QHKjZ8cMuVT0rXC4fAHByCd8dI+PxkvDGJJVUxB4pwEfpzP55sOwEKhsIa9LeMxuqWYzWZHvcDoptOY5T5R0p33LGz+KHgQ6sQn5Lj9ACwy/Ab7FR1n3RTWrkEh13QZu0RhP/Ls5Wg0uiMUCi3izgw4wt9oSAJb7L+sggp3HcM0DbM53AMKm/U6ZXyJI5kn1TPse+gFKvwagw7Y1mw2j9gPBmtWIpHIiq7rHeVyrmIeuEHFgE7bUMjmGqx1FXRTgJLpdcz9v/UuPgW0TQqPhQ6pG7hvLcs6+0eAAQA9LheEWJANtAAAAABJRU5ErkJggg==\");\n}\n#diva-canvas-buttons .zoom:hover,\n#diva-canvas-buttons .zoom.clicked {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXFJREFUeNqklD1LA0EQhvcEwcIQP7AIil9gJYigFoKVio02tmoT8av1F4i9pb2ooP9BEWwEFQLCkUA6ETQ2WmhhwOj6DszBMOyuCxl4uOV29rns7GwSa63RkSTJCB5TYAL0gRSUwB3y300oSJiB6ADH9NrDB9iSazRSNgOeleAbvDjEFyDvFSI6lewKTIM2nu8BK6Amco5CwlORuEdldCYb0w1uRO6SI8eMioRLn0wsGAKfnJ+6hEUhnAzJxKIDzv8B7XKuhVuDog4eTFzc8pPWj8sJetHP4xq+0IgUPonxgBamPB5EQ+cihWNiXNXCUnZBwGykcI6fVMOyniyALy7yI8j9cyAL4hDPfX24q1qn4JHNg1fO+6Wt+4S03WshfQP7YJHrtQZOWGJFy6yG7nIXOAv8MWTUhbihpa5tLYOK+jWW63wIesG6Txoqfp5Ps8jN36rmN1xSE3PVAh/d1NKmhCzdFtJq00KW7oB7MPwnwADMqkVBYMpLoAAAAABJRU5ErkJggg==\");\n}\n#diva-canvas-buttons .red {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAq9JREFUeNqUVM1PE1EQf7vLLt2NK+y2FmMglUSNYuCkqV5IOJlYAm1IOOnBCxz4G9Do0Ysxhj+g6KkElCaYxgMHQyiJPVnpQgxpDZhl+Sr9YLuw2z5nK61t3a11kknmzZv5vZl5M0NgjJEVEQRBjoyM+OH+Phxvnasl0EfD4fAH0Jcs/awAx8bGunVdfwZiP7KmOE3Tz+fn53f+CTg+Ps5omvYWRA9qTj8cDsfjUCh0VqskG60AbLIFMJM857aoKSBE7EMtkpVtHaDP57sMRe9sFdC0NX1sAcHAhf6TGn3aag+iKCbb29s5QRAuQsHpXC6nKoqSy+fz5cLzHMd0u1y8wPPciabpSjqd1WQ5aQkYCASuFovFp8PDw70AyFT0pVIJybKcYXQde7q6OkiKIip3hqI4e4PBNxsE8eImxqlqyn6/32sYxiyIfevr63LtixAxmpyYuPRkaspNsyxRe9e5tLQLir4iQrMJgvCWAUdHR3mIYhpqUY4qmUweSZKUrjgNDg7SLMchk+8MDVUjN1ZWjsXl5cPzIwNjM71JELyZ8iPgusLGYrGUqqqFe17vFUi/GpXgdCKaohA1Nye7FxZ26z4HMHTAaoNeshyvRCKh4EIBX+vp8Yhudxn0eH8fU8HgT3cksmflA/XrNyO8YdcSHSzLbG9uGsB/mtnpZGwbHbDMTzm0M8irqt6oo46O9CaAhyR8hmRnsA092Khj4/Fckz6XSKhhxO42WyiomUymuk2Ke3tnws6OamcPPx0hYVmuAeiiTQro0+pqSj89xQawODOTIu3TXRzAeK08KTBar3ieNzdwoNHwIJs9+RyNfnuwsYE6trYMG7z3FxB6/deChZV/F84Poa7myneB/J0kya8gv3sZDiP9d88OQA9dBz4wawbeH29j/KWC8UuAAQBHuCIrBf77FQAAAABJRU5ErkJggg==\");\n}\n#diva-canvas-buttons .red:hover,\n#diva-canvas-buttons .red.clicked {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAn9JREFUeNqUlN9rUmEYx9/3HHOezWPaZk7ZUCEDp0ERLSq63ajd1EUsGEHQxa4kiLqs6KY/YF1IdBGsYGw3xS666mZMibXI0QwDFRcc3JjS2TTmFPX0fU8qzs6x7YXveXif8zyf93l/UkVRiFajlHIwN6BLkL/hTkCfoPfIq2vmaQEBG4J5Cp0h2m0deoZc6b9AwIwwbyA36d5+QneQX2l3chqB04eAkUbMdKdTCzhBDt8mugIx3UEY6xGA1kaOboUD5OjtQI6hveNwODKCIPS6XC6L2Ww+ls/n9zKZTFGWZXXhB6zWHr/Hc9xpt/cVisVKSpJ2eiUpo7nLKN0D8yQUCt1yOp3GZkCtViOpVGpXrFb5EZ/PxvM8bf6rZ7Pkajj8GYS7QUVJtKYM2EWYWWgkEolsto+IismLmRn783D4hEkQaPs/7/IyM6Nwfo1TOqYCARNhH0NqVbFY7Fc0GpWbSbcnJ42ixUJEUSTXpqZaMGMkQobi8WbXBOjrdUptPDr3oMvtIyeTyZ1yuVwPBAKWsfFxHoOq/j5Af6ysEPviIgksLXVuDiusbtC7Xpj6tmF/nxsNBt2Dw8Oqb1uSiHVujnjX1rTvP+49A57WOw/9FouQWF0lTK01NZuJVycewHNsU/J6wN1CodzpMxUKugcSu53lGk+SZvueTv+T3b+xoQtEhV8Y8INewKYs/87lcq0q6dYWOdmlQgBnORxstkDv9IJeLSyky6WSUi2VyKn5eUL1p/vSrygf1ZuCY2GC7z50Uyv4it/f87BScfvSaZseDNN4cF5R9g48sABfgLneePLZpU9C36C3+BhQ3SPu75k9yzaArRmbJqusyfgjwACqZ9e9Z++6DQAAAABJRU5ErkJggg==\");\n}\n#diva-canvas-buttons .green {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAVCAYAAABG1c6oAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAp5JREFUeNqkVVtrE0EUPjPbbi7t2oZUk0hDCyUWC+bJIv4FhZAg0pf65EP/RUv9A6k+K4L6UBCJrSAKfWlDUbAQWoOBlDSXtptIDU2aGyTZHc+kaYjrbhrxg9k9cy7fnplzZpYwxkAPZJlQeAB+FO/iuNlWx3B8gXfwni0xVTdOj5DskXEQYAnFW6CP76DAMvOyo0sJyQ8i4us1MJiAXiCQxucjNsPq3Wqq47pwKRnHuc+CVk11HO9Dv9DxpZrlOvE1Cv1jtB1jkCGBMfhXaGIGuieOHUdy6PaQ1Q3uK8MwPHgCJ9UES5TyLN/aeBvYxCk6JTnAYT1jZ400pM8yO5lkp6m6qxwIBCYVRVn0Lnsf2mw28cJBYQrElXiRoee0MD0igEAubIVCob67uPtWEIQnoVAo1Vmy3++/02w2X6E4c7xxnO3O2iJYIDgZvLoysXLNQi2k2yZvyDkew2M5B9cJkUhEwiyfEUIkrqhlarX69brZ7rRb+HzOOTdoF+3ERE3gNrmFaDmqcH1iL1HIhXJya5mECMgxu7q6+oFnOI/jj43NvsimYp9jslk1g9Pk7GTlMrvAzMwQ34hnj54fJTXl4RzzgsfjeYxfcGmLV9mvVNSUqtrH7SN1qEOhUoCDwwO2+XLzMBPO/DSouTqAZB6jjpBESUxH081065Sdw0qtYo8musGXnDeyVqvVRj+6LuQpZhgzsuZyuZJWJ8tyybDHkYtidT4ZOZTL5WqxWOzcJlzGDKuGRxu56Pr6+lcU1oycwuFwqtFoMD62trZSPcjWONdAO5OgJEn8Bg5oHU9PTyvb29vR9sloGvCFkOPpXxesz+ebxfk93At+OsdQ3qeU7qH8pu0yr6qqt90Zv9AeQ/kjZvat5y/gf/BbgAEA/G4wfR8yHDAAAAAASUVORK5CYII=\");\n}\n#diva-canvas-buttons .green:hover,\n#diva-canvas-buttons .green.clicked {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAnBJREFUeNqUlE9vElEQwOftIlAC1EPRUlPDwT9ZaoyJGqOfgHgxXlvjxUMPTfQT1IN+gsbSKEkv6oGTvREbYmJiKKG6yUZtV9M9YCiHhQ2QJYEKLM952wW3yAIOGd5782Z+O/Pe7BJKKQwTAoSD77CMkxgub1jmL0DhPVyBVxRod2jcMCDZJxdweI3Btx2elsX/hzRKlbFAkideaICEsMswSgj8BB9coxF6ZDdz/zg24PlYGBPmw3zHZrhPSugcgkmEQBnLPuOYIcLOTww7zjJkxjiWTGAO/lcGYlz2xczBzJ5bcBthPsz7OT9oHQ0K7QLoXd3cD3ABmD81DyFXCOpGHYpG0VB/qHsgDAESQiI4PF35ttKZPTvL9+wG/uTfMnSx7aKeKLjI3xxUVTXW762vYc8+w7vI90tG2C2z7wCimReZoj3rKW4KEnMJ2Dy3CT7Od6LabDx7yGJYrMUADicBHFdR3cwgJaTyTnqn0gtaDC5CkAua5S5NL/VhuQ+5ivhSLFtLFrvKWKy0R6h37E9W3imVlrtFF64vBGKnYwRLOj5DPgC7td3u9sb2Yfpx+tfA9bD0aQ8YHry8wqdCvZartSNCZLrFt0CrayDJEo0vx/OZNxnV4c677IQvOnVE0Bv0iB/Fjghi3+Z3+z0jmugSuxTNaVfX9fYkNptoDCg77SqKUp/EZhOZAVNOu9VqtVEqlVq9NZsz2whgisOG/IyTLSePZDKZbzablCmbj4BtMZb5tcH+8aLhCer9YZ6CIJivhyzLHScY6hqyjk58vhB8E4e7jMFebdQD1K+oby2XB6hXrc7QrPNPWVWa8keAAQAeE/tQULPnhgAAAABJRU5ErkJggg==\");\n}\n#diva-canvas-buttons .blue {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAnhJREFUeNqUVU1sElEQngftypafohHbgERJ0yY1aevBtNGz6YWLx4ZUrzTx7NEYPXhpYiINh5409dRy0HLogWBim1SpgDGpKVwoWDbtGlAQjG2xsH6LgGB313aSj3kzb+Zj5r3ZXSZJEikJY0wHdQu4Dgw33AngHfAKeTXFPCVCkF2EegCMkLJsAg+RK/yXEGQc1AvgEmnLZ+A28ivtTp1CoPcEZNSI8f7rVCJ008nFrUmIdvuhrKcgtDZyVCs8T6eXjpyudqOvbzJtMOyY7PbLvSaThcvn935mMslioZA7rJdjtXIul8tss9l6yuXyr2w2WxIEIa14y4x9wqyx5zMza+MOh74VUK1WaXs7+U2SikdDQ4O9er2eNfdEUaz4fL4Alo/Ak2m1DLJJ/H7AcnxtzdXRD88baG7u8Tm/33+B53nWvre+vi5CXQEWcJYTdULGNs+C7BnWBtmxteWk1dW/J+HxuMliMZLZbKKpKQ/X9EcikWI8Hv/aMGX/fZCaUSG7B8Pe/s/h8AQtL/cTx5nI4bC1/Ha77OMpFArtBoPBtMLlTKMU3Q2i449fLDZAlUoXjY3lyOn8c6aCUKVAILW3sfHmi8qNj8i9XVWbB4uFo2iUAc33ACOjcZjXGKEhtCztqu2WSjUF396hBmFePsOY2m4mUznmS6VelzQIEzLhglaFonjUsnM58bBQeP9Dg3BFJ0nDYbQ9rxaxuPid9vcl4EhaWrqbwqirhb7EcEfrTwpj8R6iM09QrVcpcmCAFbq7fTvJ5PyBGhnwFFwHHS9YxhI3Ue0d4BoseTY/EtXewp4lGpV7nwZGgUH5AhqfhBW5sibHbwEGAKuO5gwYgh5eAAAAAElFTkSuQmCC\");\n}\n#diva-canvas-buttons .blue:hover,\n#diva-canvas-buttons .blue.clicked {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAqZJREFUeNqUVU1ME1EQfq/dH2ytVKq4TZtgYjRAAjclHvDA0SZtDbGnmnjDhLs3JHomMZ45WT21IbX8GLzBSYIciGBrMbXFn7bAVhe6/d12n7O1xbLuVpxkd2dnvvnevJnZt5gQgrQEY2xwu91e8N+E14GmOQb2t/Pz86/ALmvGaRGOj487JUmaBnUIacsWTdOP5+bmvv2T0OfzMeVy+QWofaiz7HZ1dd0LBoPVdqNBjQKyiVOQKdLXxKKOhJCxC51StLAnCF0uFwdFt56WUMEqMbqEALiA/lPUMVT7S0/PQJKi8iartfccy5poURSKPP81XyjkG4U3m80Mx3EWEFOpVJJ4nj9Kp9NJzS5j/PEyQrVHMzOf73IczbQAsiyjbPbLIUWVicPh6IaMcMsnCEJ1YWEhZDQan4TD4dTxljGOjiBUD4A2uLhozbSvyLI0mpy8f3Fi4kEvTTO43ReNRrPwGKzVagGv1zvSIMQ4boE8pkBvZLWyYvuxuir9bAWNjd2gTaYzSLlGR28dZx6Px4VEIpFr1pGBnUx5PB4LZCj5wXSisLOzV1KhEJs2Ghlks3UfZ2WznUcUxaDNzc3M+vp6UtUfhcOvNGVYq3uRyKU9npeJ3b7X53SyDdJMpkKWlhLf9/e39nXmcggI8VW9kbBYKGZjo1yDq21M7EyHKboGWyY5Pe/hIZHUtlJJkDoQ5pQux/S8Ozv1vNp2dBTLdxjyGBDKy7rL5QzFg4N69Q+ZAPpuscO3vWwgZHgN1IgeKBAopSoVmVSrdbK9/RyGl+iRReDgXWt+emefIlRQTuA7amAmgwuhkLjd3/8GSVKiprNuWBTFZ38dsBh/uA7327+PfAJzRT6B/h4h+qXb/VCB+GGAh6FWymTwEKv8El5DZu9aHL8EGADAeiNURmYqjAAAAABJRU5ErkJggg==\");\n}\n#diva-canvas-pane {\n background: #DDD;\n padding-bottom: 10px;\n}\n#diva-canvas-pane p {\n margin-left: 10px;\n padding-top: 10px;\n}\n#diva-canvas-pane p .link {\n cursor: pointer;\n}\n#diva-canvas-pane p .link:hover {\n text-decoration: underline;\n}\n#diva-canvas-mode {\n text-transform: capitalize;\n}\n#diva-canvas-slider {\n width: 188px;\n margin: 0 auto;\n display: block;\n}\n#diva-canvas-slider .handle {\n margin-left: -6px;\n}\n#diva-canvas-minimap {\n height: 210px;\n width: 210px;\n cursor: crosshair;\n margin-bottom: 10px;\n background: #000;\n}\n#diva-canvas {\n position: absolute;\n left: 0;\n right: 0;\n margin: 0 auto;\n z-index: 107;\n cursor: url(\"data:application/octet-stream;base64,AAACAAEAICACAAcABQAwAQAAFgAAACgAAAAgAAAAQAAAAAEAAQAAAAAAAAEAAAAAAAAAAAAAAgAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAfwAAAP+AAAH/gAAB/8AAA//AAAd/wAAGf+AAAH9gAADbYAAA2yAAAZsAAAGbAAAAGAAAAAAAAA//////////////////////////////////////////////////////////////////////////////////////gH///4B///8Af//+AD///AA///wAH//4AB//8AAf//AAD//5AA///gAP//4AD//8AF///AB///5A////5///8=\"), pointer;\n}\n#diva-map-viewbox {\n border: 2px solid #AAA;\n position: absolute;\n top: 10px;\n left: 10px;\n cursor: crosshair;\n user-select: none;\n display: none;\n}\n.overflow-hidden {\n overflow: hidden !important;\n}\n#diva-canvas-wrapper {\n z-index: 106;\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n right: 0;\n overflow: scroll;\n}\n.canvas-throbber {\n z-index: 110;\n position: fixed;\n}\n/* End canvas plugin */\n/* Begin download plugin */\n.diva-download-icon {\n background: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAVCAYAAABG1c6oAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2dJREFUeNqcVV1Ik1EYPt+nNacmc3P+hFbqTC/c1K2WMppRmkokUhuZClkwwTFjgRdFg66MLroRIRgYqUkbQcws6aJA6y6oKaTlnILJWHUxJlupyHI9Z37f+BhmPy88Oz/fe57z/p13TDQaJYnS3NycjMEIaAENUAmIgFngPYfH4+PjwcSzTCIhyJQYhgA12V2+AF0gfb4jIYgYDDeAW8BehmFISUlJDAqFgqSkpJDFxUXi9XrJ/Pw82dzc5DmGgasgDtFFsoDcAvTRSW5uLunp6YkqlcoZgYvfdToddV/j9/u1AwMDorm5Oap+CUjjQrRtIawrhUUzmKfU1NQQq9X6WSwWd+L7VEtLi3dra0vB35qamlrudDo3oPsA43GHw8F/aoOVDpYmAGQPKZlMJiPd3d3PQEbjOEW15HL5AWGMGhoaDmJYwpna1tbWm5WVlduxY5h74MpjMa8F2VG6CbJvEomkHdMw+bNEQXK7q6vrOawm4JBg7wqbnp6up18LCgqIVqu98JdkccnPz+/UaDTrdJ6VlXWGRfZO0kVOTs5XDK/Jv0sAFsbOra2tlbP4ofEiiN9H8p8CyyY5wn3JeyCxawKBFaESsnsM2c1DTFnh/vT0dI3L5RKHw+Gnk5OTEbo3Ozvr4b+zhYWFP+hkZWWlQHjQaDTqEPQnq6urwloly8vLNpVKZQZZfG9hYeEw52WUzc7Ojrm6sbGhEh5sb29/0dbW9jPRvaKiImKz2WhJRfg9JPYUl9ggK5VKYwENhUJy1NFZwdlPBoPBXFFREd+gz89isbzF2Cd4+4eCweAJrmY9LGI1UlZWxhfnfSjIeOWkpKRBELgyMzNja5PJFMa7PofpFkdG4zsUiUREGRkZpKmpycEi5Utms/kNvR3FKYfCIyhKeVKUUyfetb+uro7U19dfxJZf0OLu0ofBXRbAZcN8t9k/MTHhtdvtqb9pTUeQcQPLstc5snIMI0AVXev1etLb23sa05fCftg6NjbmGB0dFbYmt7DbcM2Wopq2OKrQ2NhIOjo6BuGyaacGa/X5fHf6+/tFHo9n12JGAmiLI2gOdiyvAes7dmxIKdwbcrvd1ZSUNlTaWKnVxcXF8aarVqt9aWlpl6H/ate/AL7ggfOca9TFKuiJUAUfuDC8A5w7NZJfAgwAxxpMCajpN8wAAAAASUVORK5CYII=\") no-repeat;\n}\n.diva-download-icon:hover {\n background: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAVCAYAAABG1c6oAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAwBJREFUeNqclV9I01EUx+9+C3M6JzYhhnMNfcgxI6ipaD6sPxuKJRphjYIMweWD0EtPgxj40ENImD5EPuzFN+tBn5YIawUxZ249JXtQQkasLHNuobH5u33P2G9cpyJ24cPd79x7vvf8zv2dMxXnnBUPlUpVhakPXMzTCHbAZxABYTAN3+w+ZxIUwbgOvtHSEXwC1mJ/lRIhotJhegHu07NGo2Ht7e2spaWFNTc3s1QqxRYWFnKEw2Hl8L/gCXjGFSEhsmnldLvdzldWVnZgfw+eg3vgIZgEkUAgINfV1YnRDhd08mIuZdHr9XJZlj/AXq/T6arE18RbJPOO9q2tra+9vb2KfRvzWSVIgyRJv2nB4XDw3d1dDxYkWvR4PGdEQRwgC/mqSCQSszU1NYooXdQJEvSQobKyki8vL8+KCT5CMCc6MzOTEPZclWpra7tItaOjY7uhoeEBO95IdXd337ZYLLkHvV5/SUomk/SNMUQYxPSLHX8EcUEUJdNqtVckJLeCHoxGY4D950Aev9CcTqcbpcIxwWCsqFq6fD6fU7RlMhmy3wQO0R6Px9doLi0tPUnqcj7hj8WE9/T0vD6sSoaGhkbFvWazeZ7snZ2d3xk+Fcobx+X4xU3ZbLbf6XTuE3O73XTTl8W91dXVP2htcHAwwAYGBj7SQ0lJCRW/Wdy4uro6bTAYCmJWq5VvbGw8Lar9G0JReNni4uIwTlCc3gFJcND6/f41tVrNUds8FAotwaYWxPQoilx0bW1tfHNzs54WdFNTUz+F1xqlL14QPT8yMpKZmJj4g98mQewUeEs+5eXlPBqNzhdqGThcLldxa7IozihHagy3Dmtx4+PjadhPi4JsfX19EgkXRXfyKaCI7wI3eAWWlD1lZWV8bGyMOlffnm6TRwNezs3NcZPJdFRz5a2trTwWi1GLe3RggxXGNSTXh8sw4sLo0lgkEmGIhtlsNtbU1JRruKj9EC6rH/v3FsRB/ykYVI53gA1cwJ5zqA7qztH8K4fAGyAXO/4TYAAJjVy1G5e84AAAAABJRU5ErkJggg==\") no-repeat;\n}\n/* End download plugin */\n/* Begin autoscroll plugin */\n.diva-autoscroll-icon {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAASCAYAAABSO15qAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAGhJREFUeNpiYGBgKABigf///zOQg0EARH4A4gZyDIIZ8B/JoAJKDIDhB0CcQIkBRBtEyABkgxwoMQCGD6AbRKoBGAYxQgXIBRuZGKgAKPIC3QLxArnRSHZCIjspk52ZKMrOFBUoAAEGAKnq593MQAZtAAAAAElFTkSuQmCC\");\n}\n.diva-autoscroll-prefs {\n display: none;\n margin-right: .6em;\n}\n.diva-autoscroll-prefs-text {\n float: left;\n}\n.diva-autoscroll-prefs-input {\n float: right;\n margin-left: .6em;\n}\n.diva-autoscroll-pps {\n width: 9em;\n}\n/* Begin iiif-highlight plugin */\n.annotation-overlay {\n padding: 1px;\n}\n.diva-annotations-icon {\n float: right;\n border-right: none;\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAXCAYAAAAcP/9qAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAVVJREFUeNrEltFtwyAQhknUBbwCKyQjOCOkI8QD+CErpA8ewB6hjOCMUK/AChnBgfY/6ReiIcZIPumMDwwf3OGD3TzPagv58I+u68S+Or041ZnjPZw2Tg1sP1bvdED9r7Rt+wcm6A3vEwZZIhX63AOovCuGC1gD6jt+UudcqWjyVQy+h3FGORSAesAI6CnwnG+rGcwxWgvt4cEf1DHclzYGXiM3QBt4rcLKBW6pLAbusTk99EChY/gRcVelwD1cLNDLi19NlQKnoLLBprDjfgvoGrBATQ6UE0gO1NImWgTNWTG79xgZ/C1oDthDv5DhQgjbB/xexcCSXscXK9Vor0uDNQatAdDByjUdDKrk5hIZl8Q0BU7N9BTYVnJv4BEVqY+CDZL8FbM3/3yfOjJrukyYd2Js6Xbw7XTO1BFeS57rvLkG3D6mFXGfsIAm9eFuq1vmU4ABAJY9c+Sb7cPEAAAAAElFTkSuQmCC\");\n}\n.annotations-icon-active {\n background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAXCAYAAAAcP/9qAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAVRJREFUeNrEltFtwyAQhknUBbwCKyQjOK9+S0eIR8gK6Qj2COXNr84I9QqskBEcaP+TfiEaYozkk874wPDBHT7YzfOstpAP/2iaRuyr04tTnTnew2nr1MD2Y3VOe9T/yjAMf2CC3vA+YZAlUqHPPYDKu2K4gDWgvuMndc6ViiZfxeB7GGeUfQGoB4yAngLP+baawRyjtdAOHvxBHcN9aWPgNXIDtIXXKqxc4JbKYuAOm9NDDxQ6hh8Rd1UK3MHFAr28+NVUKXAKKhtsCjvut4CuAQvU5EA5geRALW2iRdCcFbN7j5HB34LmgD30CxkuhLB9wO9VDCzpdXyxUo32ujRYY9AaAB2sXNPBoEpuLpFxSUxT4NRMT4FtJfcGHlGR+ijYIMlfMXvzz/epI7Omy4R5J8aWbgffTudMHeG15LnOm6vH7WNaEfcJC2hTH+62umU+BRgAQ41z5HnPmSYAAAAASUVORK5CYII=\");\n}\n.diva-inner.annotations-hidden .diva-highlight {\n display: none;\n}\n/* End iiif-highlight plugin */\n/* Begin iiif-metadata plugin */\n.metadata-label {\n font-weight: bold;\n}\n.diva-metadata-link {\n font-size: 1em;\n line-height: 1.8em;\n}\n/* End iiif-metadata plugin */\n","@import (reference) \"variables.less\";\n\n.hidden() {\n display: none;\n}\n\n// Shortcut for a 1px solid border\n.frame(@colour) {\n border: @borderSize solid @colour;\n}\n\n.plugin-icon(@plugin-name) {\n background: data-uri('@{iconPath}plugins/@{plugin-name}.png') no-repeat;\n\n &:hover {\n background: data-uri('@{iconPath}plugins/@{plugin-name}-hover.png') no-repeat;\n }\n}\n\n.grab() {\n cursor: data-uri(\"@{iconPath}openhand.cur\"), pointer;\n}\n\n.grabbing() {\n cursor: data-uri(\"@{iconPath}closedhand.cur\"), move !important;\n}\n\n.loading() {\n background: data-uri(\"@{iconPath}loading.gif\") no-repeat center;\n}\n\n.pretty-shadow(@distance: 4px) {\n box-shadow: 2px 2px @distance 0 rgba(0, 0, 0, 0.5);\n}\n\n.full-width() {\n width: 100% !important;\n max-width: 100% !important;\n}\n\n.full-height() {\n height: 100% !important;\n max-height: 100% !important;\n}\n","@import (reference) \"../variables.less\";\n@import (reference) \"../mixins.less\";\n\n/* Begin canvas plugin */\n\n// Colours - should not be changed\n@black: #000;\n@darkGrey: #333;\n\n// Dimensions - should not be changed\n@toolsWidth: 230px;\n\n// Defines a base z-index for the backdrop div\n@canvasZIndex: @fullscreenZIndex + 5;\n\n// Colour scheme\n@canvasBackdropBg: rgba(50, 50, 50, 0.9);\n@canvasToolsText: @darkGrey;\n@canvasToolsBg: @white;\n@canvasButtonText: @darkGrey;\n@canvasButtonBg: @lightGrey;\n@canvasButtonHoverBg: @lighterGrey;\n@canvasPaneBg: @grey;\n@canvasPreviewBg: @black;\n@canvasViewboxFrame: @primaryBorder;\n\n.diva-canvas-icon {\n .plugin-icon(\"canvas\");\n\n &.new {\n background: data-uri('@{iconPath}plugins/canvas/canvas-enter-stored.png') no-repeat;\n &:hover {\n background: data-uri('@{iconPath}plugins/canvas/canvas-enter-stored-hover.png') no-repeat;\n }\n }\n}\n\n#diva-canvas-backdrop {\n z-index: @canvasZIndex;\n position: fixed;\n top: 0;\n left: 0;\n bottom: 0;\n right: 0;\n display: none;\n background: @canvasBackdropBg;\n}\n\n#diva-canvas-tools {\n color: @canvasToolsText;\n position: fixed;\n top: 10px;\n left: 10px;\n width: @toolsWidth;\n z-index: @canvasZIndex + 3;\n background: @canvasToolsBg;\n padding-bottom: 10px;\n .pretty-shadow;\n\n .action-buttons {\n clear: both;\n margin-bottom: 5px;\n text-align: right;\n\n a {\n color: @canvasButtonText;\n text-decoration: none;\n background: @canvasButtonBg;\n padding: 5px;\n .frame(@buttonFrame);\n\n &:last-child {\n border-left: 0;\n }\n\n &:hover {\n background: @canvasButtonHoverBg;\n }\n }\n }\n}\n\n#diva-canvas-toolbar {\n height: 16px;\n padding: 10px;\n padding-bottom: 0;\n div {\n height: 18px;\n width: 18px;\n background-repeat: no-repeat;\n cursor: pointer;\n z-index: @canvasZIndex + 4;\n display: inline-block;\n margin-right: 5px;\n }\n span {\n vertical-align: top;\n float: right;\n }\n}\n\n#diva-canvas-toolwindow {\n // Needs to be set to ensure the viewbox is hidden when minimising\n position: relative;\n margin: 10px;\n}\n\n#diva-canvas-close {\n background-image: data-uri(\"@{iconPath}close.png\");\n\n &:hover {\n background-image: data-uri(\"@{iconPath}close-hover.png\");\n }\n}\n\n#diva-canvas-minimise {\n background-image: data-uri(\"@{iconPath}plugins/canvas/canvas-minimise.png\");\n\n &:hover {\n background-image: data-uri(\"@{iconPath}plugins/canvas/canvas-minimise-hover.png\");\n }\n}\n\n#diva-canvas-buttons {\n div {\n cursor: pointer;\n background-repeat: no-repeat;\n width: 20px;\n height: 20px;\n padding: 5px;\n display: inline-block;\n background-position: center center;\n\n &.clicked {\n background-color: @canvasPaneBg;\n }\n }\n\n .button (@adjustmentName) {\n background-image: data-uri(\"@{iconPath}plugins/canvas/canvas-adj-@{adjustmentName}.png\");\n\n &:hover, &.clicked {\n background-image: data-uri(\"@{iconPath}plugins/canvas/canvas-adj-@{adjustmentName}-hover.png\");\n }\n }\n\n .contrast {\n .button(\"contrast\");\n }\n\n .brightness {\n .button(\"brightness\");\n }\n\n .rotation {\n .button(\"rotation\");\n }\n\n .zoom {\n .button(\"zoom\");\n }\n\n .red {\n .button(\"red\");\n }\n\n .green {\n .button(\"green\");\n }\n\n .blue {\n .button(\"blue\");\n }\n}\n\n#diva-canvas-pane {\n background: @canvasPaneBg;\n padding-bottom: 10px;\n\n p {\n margin-left: 10px;\n padding-top: 10px;\n\n .link {\n cursor: pointer;\n\n &:hover {\n text-decoration: underline;\n }\n }\n }\n}\n\n#diva-canvas-mode {\n text-transform: capitalize;\n}\n\n#diva-canvas-slider {\n width: 188px;\n margin: 0 auto;\n display: block;\n\n .handle {\n margin-left: -6px;\n }\n}\n\n#diva-canvas-minimap {\n height: @toolsWidth - 20px;\n width: @toolsWidth - 20px;\n cursor: crosshair;\n margin-bottom: 10px;\n background: @canvasPreviewBg;\n}\n\n#diva-canvas {\n position: absolute;\n // Center it (if it's smaller than the browser window)\n left: 0;\n right: 0;\n margin: 0 auto;\n z-index: @canvasZIndex + 2;\n .grab;\n}\n\n#diva-map-viewbox {\n border: 2px solid @canvasViewboxFrame;\n position: absolute;\n top: 10px;\n left: 10px;\n cursor: crosshair;\n user-select: none;\n .hidden;\n}\n\n// Added to the body upon entering canvas mode (to hide the scrollbar)\n.overflow-hidden {\n overflow: hidden !important;\n}\n\n#diva-canvas-wrapper {\n z-index: @canvasZIndex + 1;\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n right: 0;\n overflow: scroll;\n}\n\n.canvas-throbber {\n z-index: @canvasZIndex + 5;\n position: fixed;\n}\n\n/* End canvas plugin */\n","@import (reference) \"../mixins.less\";\n\n/* Begin download plugin */\n\n.diva-download-icon {\n .plugin-icon(\"download\");\n}\n\n/* End download plugin */\n","@import (reference) \"../variables.less\";\n\n/* Begin autoscroll plugin */\n\n.diva-autoscroll-icon {\n background-image: data-uri(\"@{iconPath}plugins/autoscroll-play.png\");\n}\n\n.diva-autoscroll-prefs {\n\tdisplay: none;\n\tmargin-right: .6em;\n}\n\n.diva-autoscroll-prefs-text {\n\tfloat: left;\n}\n\n.diva-autoscroll-prefs-input {\n\tfloat: right;\n\tmargin-left: .6em;\n}\n\n.diva-autoscroll-pps {\n\twidth: 9em;\n}\n","@import (reference) \"../variables.less\";\n\n/* Begin iiif-highlight plugin */\n\n.annotation-overlay {\n padding: 1px;\n}\n\n.diva-annotations-icon {\n float: right;\n border-right: none;\n background-image: data-uri(\"@{iconPath}plugins/annotation.png\");\n}\n\n.annotations-icon-active {\n background-image: data-uri(\"@{iconPath}plugins/annotation-active.png\");\n}\n\n.diva-inner.annotations-hidden .diva-highlight {\n display: none;\n}\n\n/* End iiif-highlight plugin */\n","/* Begin iiif-metadata plugin */\n\n.metadata-label {\n font-weight: bold;\n}\n\n.diva-metadata-link {\n font-size: 1em;\n line-height: 1.8em;\n}\n\n/* End iiif-metadata plugin */\n"],"sourceRoot":"/source/css"} \ No newline at end of file diff --git a/build/css/diva.min.css b/build/css/diva.min.css deleted file mode 100644 index cb1970d0..00000000 --- a/build/css/diva.min.css +++ /dev/null @@ -1,2 +0,0 @@ -.diva-wrapper{min-height:100%;width:100%;-ms-flex-positive:1;flex-grow:1}.diva-wrapper.diva-wrapper-flexbox{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.diva-wrapper>*:not(.diva-outer){-ms-flex-negative:0;flex-shrink:0}.diva-title{text-align:center;font-weight:bold;font-size:1.3em;max-width:50em;margin:0 auto}.diva-button,.diva-input{box-sizing:border-box;outline:none;border-radius:0;font:inherit;vertical-align:middle}.diva-button::-moz-focus-inner,.diva-input::-moz-focus-inner{padding:0}.diva-button{display:inline-block;cursor:pointer;height:34px;width:34px;line-height:34px;-webkit-appearance:none;padding:0;background-color:#F1F1F1;background-repeat:no-repeat;background-position:center;border:1px solid #AAA}.diva-button:hover,.diva-button:focus{background-color:#FDFDFD}.diva-button.diva-button-text{width:auto;padding:0 .5em}.diva-input{height:34px;border:1px solid #AAA;padding:0 .5em}.diva-input:focus{border-color:#919191}.diva-label{margin:0 1em;line-height:34px;vertical-align:top;white-space:nowrap}.diva-tools-left,.diva-tools-right{margin-bottom:1em}.diva-tools-left{float:left;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.diva-zoom-out-button,.diva-grid-out-button{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAIklEQVR42mNgGAWjYBQQB3x9ff9TgkcNJmzwKBgFowAVAACElnmBtJelAAAAAABJRU5ErkJggg==")}.diva-zoom-in-button,.diva-grid-in-button{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAKElEQVR42mNgGAWkAF9f3//IeNTgkWQwugGk4lGDqRf2o+l41OCRAgDiStSheMjqggAAAABJRU5ErkJggg==");margin-left:-1px}.diva-tools-right{float:right}.diva-tools-right .diva-button{margin-left:-1px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.diva-page-nav{white-space:nowrap;margin-right:1em}.diva-goto-form{display:inline-block;position:relative}.diva-goto-page-input{width:5em}.diva-input-suggestions{display:none;box-sizing:border-box;position:absolute;width:100%;background-color:white;border:solid 1px #aaa;border-top:none;z-index:1}.diva-input-suggestion{box-sizing:border-box;width:100%;margin-top:3px;padding:2px;padding-left:5px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;cursor:pointer}.diva-input-suggestion.active,.diva-input-suggestion:hover{background-color:#dfefff}.diva-fullscreen-icon{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAAgRJREFUeNq8VrGuokAUPaOEarcwMfrgIyxMLAx/YKGNtRWFfgGJJohWWmmpITbWNvoPtBZ+g4GHITEGtyHobLO4iMAbfS/ebkjmHO655947hFKKdwShlKJeryeybTYbQghJBWHByOBNwUWZXwWKuxvOkmMB+Yk6xhIl6V0ulz8Hg4EAALIsW7Ztf7Bmx1yjRqMBTdMESikopdB1XZAkiTkjZiLHce7OnudlXNd9zt6s0kmSBEVRiO/7RNO06263YzYGBwDhPgkTi6II0zRvZ8MwMB6PKQBESQRBgGVZ/zOIYCZK12w2MZvNSKVSuftuGAYMw3jIdD6fk1qt9lyNisWi2Wq1CAAoipItlUqJAIGcANBut0m1Wv2TWKNomoSQOwnP5/OvTqfjnk6nu8u5XA66rmd5nr+GJYvD/NJ1nudlRqPRAwkAHI9HTCaTy8v2lmXZAgDf98lwOLwkuStqEADo9/sW82SwbftjsVhQx3Ee3BU0adgQAVk+n8d2u2UfQQCwXq9T+8h13bs+ijoxVrpgrKQNz7C7OI6jqqqmujGKmQkmQdriEkXxRhIEz/NXVVWzhUIhkSyMyzTrTNPEcrl8+JHpdHo5HA6vr4m4WK1W2O/3bq/X+/3PmaZt29/bR2mbttvt3hT99uJ7GB8Mj5OniOIMwfqOSDPTU4vvR95174i/AwDgSxraLsuBgwAAAABJRU5ErkJggg==")}.diva-toggle-nonpaged-icon{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4AgTEBEfaruPBwAAAKNJREFUSMfdVcENgCAMbI0zdQGWghfw6lQswFL40lQkoiKReD/aArnrFTClBGcwxjgAsHk8xohyTUSlg/wEdVh4DjtBZ8x3ipkZT9IoZN3k6s7ge4lyt1yB3NOdAWqtXYMVPTO7PKiU2vWgyeev2vQq5FTPNZ9LuiGEg8/Ht2mJDRGVYukTBr0v8FWJ1sZmf0Qpj7+U6G/P9Z0JHUoi3+LzWsECD3Iw40bs39cAAAAASUVORK5CYII=")}.diva-toggle-nonpaged-icon-active{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4AgQERwL1rjg7gAAAJRJREFUSMfdVFsOgCAM24wng4PBDtaz4ZcJmvESUbR/sIXSrRuHECgHa60nIqeE+HTWHhKuIEgl1BDQQoOxtiQD4EyYNdXDFUxRIr7wLj+mgI0xKZ/XQAB4xdqHHriOD7pbbdqAoBJoPo/lAihN9+STHKtR7t7ZRaMJpFiivbGlxqcm/vvL7mfrumVCpyqR9Pi8lLABZfMqIZXz4SkAAAAASUVORK5CYII=")}.diva-view-menu{display:inline-block;position:relative}.diva-view-options{position:absolute;top:34px;z-index:1;display:none;box-shadow:1px 1px 4px 0 rgba(0,0,0,0.1)}.diva-view-options .diva-button{margin-top:-1px;display:block}.diva-document-icon{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAYCAYAAADOMhxqAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAAsSURBVDiNY/T19f3PQAJgIkUxAwMDA+P//yRZQIYNNPfDqIZRDUNHw3DIcQDkTQvYVGzS1gAAAABJRU5ErkJggg==")}.diva-grid-icon{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAABfSURBVDiNY/T19X3AwMAgz4AKHm7atEmBgYGBwc/Pjyx5JiyCDGhiZMkzYRGkChiaBj/EIv4QB5toecb///9T4jCcgGZBwTiajmFgaBo8mo4ZGBhG0zESGJoG0yQdAwD6QT53wkiu4gAAAABJRU5ErkJggg==")}.diva-book-icon{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADtJREFUeNpi/P//PwMtABMDjQDNDGbx8/MjKiw2bdrECKKJVT/0gmLU4FGDRw0eNXhADWYcrZpgACDAAPfJDBBti7cPAAAAAElFTkSuQmCC")}.diva-link-icon{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAXCAYAAAALHW+jAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAANFSURBVDiNjZRPaBx1FMc/b3banUgVQQ8boUURoSIWE8GCYINtDjUwv91Esxdb8F9NDlURclAohsWDglQRjHVFbKuguLKSnclqKigqBS9uFKSCiTRYCxGxejC4m+z+5nlwpo6bjeZ3+r3v+77PvPdmGFFVtnoKhcLeKIqeA24DLqlqva+v71ilUllNPLJVoO/7R0TkBJDpSi1FUXRwbm7u/JaB+Xz+kKqeBpxNLD86jnPX7OzsT/8LNMbcC7yX6uxrx3GOqupuVX0F6AMQkW9yudwd/wk0xtwDzALbY+nc+vr6vvn5+d8AfN8fEZFZYFucf2qzETDGDAHVBCYii9ba4QQGEIbhh8BUquy+nsB8Pj8AhMk4wHK73T5Qr9d/7vZ6nnc6Fd68ATgxMbFNVU8BV8adXcxkMvuz2exqPp9/tlgs/ustN5vNYiq8sAG4srIyDOyJw1+jKNofRdEla+28qh5rtVonS6WSA+D7/qiIvJrUisi7vUbenbq/HYbhEnAI2BtrhxcWFl6Tv88A4MawRi6Xe34DUEQupsI7RURqtdoJEZlJRFU9YoyZFJEXgF+A71T1YLlcbl/+bMbGxq6x1u7JZDLnOp3OMnBFXP96GIaT8YhvAg/E+qrrutdba4dc1/2yWq2uQPzlj4yMXGWtPaOqp1zX/UNEnkl1+ajv+y+rqnqe9wjwbazvsNYO1Wq1DxIYgFMqlRzXdUNVvR3Ytba2NjU4OPiSiLyVgj5mjHmyUqlYVf00pd/QvTKn0Wg8Duz7Zz26Mj09HWWz2YeA9+O9LorIO4VCYaeIjCfFURSd3wBM7QTg6SAI3gCoVCq2v7//fqDcbrcPdDodiaLoE+C62LssIme6gS5wY/JAz/Nm0slyudwGJo0x1wKfATfFqXXgwSAI/uzV4VJybzabY92G0dHRq4GPgVtiqQMUgyD4vNubAKtJICLlQqEwnMTFYnGHtfYjYCCZQkQOB0FQ6wUDkPHx8e2tVusr4NZYa6rqEyLSAF4EhmJdVfXhMAxPbgaD+I9tjNkFnAV2bmZU1aNhGM5slk+OAxAEwQVr7TDwQy+WiExtBXYZCFCv1xc9zxsAjgPfA78DXwB312q141uBAfwFPr5cDatao0oAAAAASUVORK5CYII=")}.diva-zoom-label,.diva-grid-label,.diva-page-label{display:inline-block}.diva-fullscreen-tools{position:fixed;top:15px;right:30px;z-index:101;padding:15px;border:1px solid #DDD;background:#FFF;box-shadow:2px 2px 4px 0 rgba(0,0,0,0.5)}.diva-fullscreen-tools .diva-tools-left,.diva-fullscreen-tools .diva-tools-right{margin-bottom:0}.diva-fullscreen-tools .diva-tools-right{margin-left:2em}.diva-fullscreen-tools .diva-label,.diva-fullscreen-tools .diva-page-label{margin:0}.diva-fullscreen-tools .diva-zoom-label,.diva-fullscreen-tools .diva-grid-label,.diva-fullscreen-tools .diva-page-label{width:8em;display:block}.diva-fullscreen-tools .diva-page-nav{margin-right:0}.diva-outer{display:-ms-flexbox;display:flex;clear:both;background:#F1F1F1;border:1px solid #AAA;position:relative;overflow:hidden;min-height:100px;min-width:200px;height:700px;-ms-flex-positive:1;flex-grow:1}.diva-viewer-canvas{position:absolute;top:0;left:0}.diva-viewport{position:absolute;top:0;bottom:0;left:0;right:0;overflow:auto}.diva-inner{cursor:url("data:application/octet-stream;base64,AAACAAEAICACAAcABQAwAQAAFgAAACgAAAAgAAAAQAAAAAEAAQAAAAAAAAEAAAAAAAAAAAAAAgAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAfwAAAP+AAAH/gAAB/8AAA//AAAd/wAAGf+AAAH9gAADbYAAA2yAAAZsAAAGbAAAAGAAAAAAAAA//////////////////////////////////////////////////////////////////////////////////////gH///4B///8Af//+AD///AA///wAH//4AB//8AAf//AAD//5AA///gAP//4AD//8AF///AB///5A////5///8="),pointer;position:relative;overflow:hidden;margin:0 auto}.diva-inner.diva-grabbing{cursor:url("data:application/octet-stream;base64,AAACAAEAICACAAcABQAwAQAAFgAAACgAAAAgAAAAQAAAAAEAAQAAAAAAAAEAAAAAAAAAAAAAAgAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAfwAAAP+AAAH/gAAB/8AAAH/AAAB/wAAA/0AAANsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//////////////////////////////////////////////////////////////////////////////////////gH///4B///8Af//+AD///AA///wAH//+AB///wAf//4AH//+AD///yT/////////////////////////////8="),move !important}.diva-page{box-shadow:7px 7px 6px -6px rgba(0,0,0,0.3);position:absolute;background-color:#FDFDFD}.diva-page-tools-wrapper{position:absolute;z-index:3}.diva-page-tools{position:relative;top:-25px;height:25px}.diva-page-tools div{display:inline-block;height:25px;width:25px;cursor:pointer}.diva-fullscreen{width:100% !important;max-width:100% !important;height:100% !important;max-height:100% !important;z-index:100;position:fixed !important;top:0;left:0;margin:0;border:0}.diva-popup{background:#FFF;border:1px solid #AAA;padding:.6em;z-index:101;position:absolute;box-shadow:2px 2px 4px 0 rgba(0,0,0,0.5)}.diva-link-popup{font-size:10pt}.diva-link-popup input{width:18em}.diva-link-popup input:focus{outline:none}.diva-link-popup.in-fullscreen{top:150px;right:30px}.diva-hide-scrollbar{overflow:hidden !important}.diva-slider{position:relative;top:.6em;float:left}@media (max-width:480px){.diva-slider{width:100px}}.diva-throbber{display:none;position:absolute;width:50px;height:50px;background:url("data:image/gif;base64,R0lGODlhEAAQAPIAAPHx8QAAALi4uD4+PgAAAFxcXHt7e4qKiiH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAADMwi63P4wyklrE2MIOggZnAdOmGYJRbExwroUmcG2LmDEwnHQLVsYOd2mBzkYDAdKa+dIAAAh+QQJCgAAACwAAAAAEAAQAAADNAi63P5OjCEgG4QMu7DmikRxQlFUYDEZIGBMRVsaqHwctXXf7WEYB4Ag1xjihkMZsiUkKhIAIfkECQoAAAAsAAAAABAAEAAAAzYIujIjK8pByJDMlFYvBoVjHA70GU7xSUJhmKtwHPAKzLO9HMaoKwJZ7Rf8AYPDDzKpZBqfvwQAIfkECQoAAAAsAAAAABAAEAAAAzMIumIlK8oyhpHsnFZfhYumCYUhDAQxRIdhHBGqRoKw0R8DYlJd8z0fMDgsGo/IpHI5TAAAIfkECQoAAAAsAAAAABAAEAAAAzIIunInK0rnZBTwGPNMgQwmdsNgXGJUlIWEuR5oWUIpz8pAEAMe6TwfwyYsGo/IpFKSAAAh+QQJCgAAACwAAAAAEAAQAAADMwi6IMKQORfjdOe82p4wGccc4CEuQradylesojEMBgsUc2G7sDX3lQGBMLAJibufbSlKAAAh+QQJCgAAACwAAAAAEAAQAAADMgi63P7wCRHZnFVdmgHu2nFwlWCI3WGc3TSWhUFGxTAUkGCbtgENBMJAEJsxgMLWzpEAACH5BAkKAAAALAAAAAAQABAAAAMyCLrc/jDKSatlQtScKdceCAjDII7HcQ4EMTCpyrCuUBjCYRgHVtqlAiB1YhiCnlsRkAAAOwAAAAAAAAAAAA==") no-repeat center;background-color:#FFF;border:1px solid #DDD;box-shadow:2px 2px 4px 0 rgba(0,0,0,0.5);top:50%;left:50%;margin-left:-25px;margin-top:-25px}.diva-error{position:absolute;width:400px;height:200px;background-color:#fff;border:1px solid #ddd;box-shadow:2px 2px 4px 0 rgba(0,0,0,0.5);top:50%;left:50%;margin-left:-220px;margin-top:-120px;z-index:120;padding:0 1em}.diva-error-close{width:18px;height:18px;border:none;background:#fff url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAQVJREFUeNqslLEOgjAQhq+NkwnExAcSGE1gchBnH8tVXNycmIhvJBAGEhO8n7SJIqXFeMklbbl+vR5/T3RdR0mSLInozF7WdX0siuJJExaG4cLzvBMP123b7vM8b0Qcx4Dc2CMECSGuVVWlJhggvu9fOIGdWrqzb6XKJNKBCEAgNjhAYBv2DKByuGEMZoBoe4ggCIwB+poY22IEij11GgJ1liYI6tmDHFKnKQjmUn/AQp+iymAO5APkCjPJQ9KfTDroxCqND9CcYo/BpA2CmozVbAj7myD7V2wTm8o6ZdiXMDFnRoOrrV1+sUUaK4l+oloB2dqIAYa9B/HW2DK84l8b20uAAQCLjwLqt9305AAAAABJRU5ErkJggg==");position:absolute;top:1em;right:1em}.diva-error-close:hover{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJFJREFUeNqslLEKwCAMREPpVP9/756hgnOhf5ZGuYIUSSxN4JZ4PKPRkIiQxqY6VLtqrTlL1QNvUSXkGuRUCcQWDBDu/BcYrRJ5aQgbQB5lQoniwQyIgGEaGOu+Z2I39iCNMVm6f/TJy3SbQR86Y3Z0oagIP1rIZYe0P+xBRn6REvVpE0bBvzHSDbb8Z7DdAgwARUeIgUWvd3IAAAAASUVORK5CYII=");cursor:hand}.diva-modal{position:absolute;width:32em;background-color:#fff;border:1px solid #ddd;box-shadow:2px 2px 4px 0 rgba(0,0,0,0.5);top:50%;left:50%;-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);z-index:120;padding:2em 2.2em}.diva-canvas-icon{background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAATCAYAAAB/TkaLAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAatJREFUeNqMlD0vBVEQhnfX4SL2NiI+Cm5Dp5f4C26hUVBpCQqtSkLDr1CpdKKQkIheS0mHm3ARXHHPek8yE6/JWUzyZD/mzOy8c+ZsWq/XE9g02AedoAUm5BqsBs5AF3gAk+BTfBz3AcZDXCbOTIIK0AN88m2D5OuXaxKJ69Y4J04vlYUFb7JY7Y7uH0FKCS/BhiT1ks87WlApqTQx1aktg1XQJ/6QYwWcZP8IVkupykQS5OQLsSNg3v0mA7TNB/mjB2AO9JLae3ARgpfAWkwGWDcVcqXb4BCMSVzwXYFrJ33JyZGIjAVJWiV5jpI+gWewS++GtOQg45V2PFwb4FieK0Z+ByXJTXsqOlJWhvb4mkZKp6Ft+hzdXCcygu3Q+xqdKN7domQqfiRnySkFx4LSSMIsNnva+GYkid7fglmqhv1NefZcjKOdLCLVzIBN2RzdpKb8SErjnJFvG78IhuldWDNg5BdlPclL+nkk46b91nHjkcpsMVpptWRn98A5mKKROiV/9S/5PtLTlvx8t2jNqFHqrUpNGo7bu/xoXyKJb+S0NIyiaNyXAAMAV9J7QqwGuvAAAAAASUVORK5CYII=") no-repeat}.diva-canvas-icon:hover{background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAATCAYAAAB/TkaLAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAApVJREFUeNqEVMuKGkEUrW7bd3zEgGAkgmRQXPhYCKO7EZcB98GFCzchCeRD3BrIxh/wE2Q+YBZuBtyJDyQk0TCJj/Hdtjm3Uz1pZkpzoeiqOnXq3nPr3laOxyNLJpPFw+FwvdlsmMvlYjBnp9PZ0ATYBbAux5bY8gNTY7EYs9vtT3iYb2SaaZomr9drJkkSWywWzGq1auyfvSQSx9zAjrSZSCSEvFwux/RLZVnWnE4no6g9Hg/b7/eyceNyufxGJDJFUebT6VRflMtlBWc7mH6iAQcfQqGQrVAo2BRzpLhc9xgIBMyRCm0ymdzCeQLTIw+MQVF9NBpNlf+RjSgNIzJZrVYLWSwWCWuJq2CDwYD1+32f3Gw2hTIajYaNqxA6q1Qq916vV08ZmaqqLBwOs1KptFfOycAygEglIj6OOJvNFlut1uvZbPaKMDg/+ny+QSaTuZMikcgvyHhuJlF0uEgbDoeWdDp9OZ/Pb8gZ9pf4+nu9nlqtVlm73b7EG9wQF5FqUGjJ5/NMPieD1tvt1mbOJ87p74Ao6VGfmSpDGo/HDqSTKedk0GGk5rvxOLADzqg0QU0KH9HhcDA9X9FotIiNa45RyC5I1DsK2AWwLsfmGC9IPsee8DD+dhQ8yoZ8QUlJZzAhT78UJTUXgciPHAwGfwC7wvJqt9u9icfjD7k4xdOTvlqtfpvyZu6az8jpWzrCcyah3NyYes/xFEOGSB66Jo5y84HoM3eNWb6Ip2/iZ+IXdQ7K7aeo3Aw7xdMvRTl5HpcH75r3iDSD6UcaiPgdnMQM/BRP5rLAtRi1Jhl5QgPcgbgBVseyjnNfut3ug34Rj4aeU3i/x8se8O9kbrdbNQ5ybAvsK8cWBpZKpYQ8StUfAQYA90WC9GAOvOkAAAAASUVORK5CYII=") no-repeat}.diva-canvas-icon.new{background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAATCAYAAAB/TkaLAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAb9JREFUeNqElM0rRVEUxc+97/J8xktRJsxkwpBShgwMzVBShsyUgVI+/gEzU0bMFTOlpIwoExNhQpF6+S7utQ7rsJx3Hrt+9exz1j57nbuPaH7z0iAmwCKoBC+gCxTNV/SBDVDBXDf3ON0Cda9OF3Mx5kIKasCb+Yl2FrRR4B4jujzIQLXTJVxMeZIt/CR5GxcU2bhnIcO9B2BNatjCaeKdmOqJEpEUdjEHRkAddbbWINiPTWlEJhx+fhTU83eOhVvBcCI21tnNtw3wTFEWOGQHDHFvxsI34DgJ2Mg5G2CKHcZc0+Kr4Ai0Se4UnNmiY6BW7jZzNli0WezrBzwBHWBZ1ltckW1+cSP3cwt2+bez564mL3sbvbUGN1JqI+OJnzYoPBfbbvRC8X01CW30gEkWtMJOeVH/TUZJTl9ULJ36oqjMFMShvLv4uzKWcryKWQrfmTOeLvLtG85XGjh1hkOeyKuZBr2iK5nhRDoKPccBjonmCp6TSD7irztpkt96p4fgURzEHDcjuqhcpwXpRrtaAXugX7rZ8rr+034aOPWa739cnuqSZ79E54oW+d+8Suy6eABXfElFr7Og7kOAAQDbb3wSAOBcfAAAAABJRU5ErkJggg==") no-repeat}.diva-canvas-icon.new:hover{background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAATCAYAAAB/TkaLAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAa5JREFUeNqMlD8vRFEQxd977lrEakT8KdhKp5f4CCoaUesIEi2diAifQkOj3UqyBb1GQUmHTVgEK/Y95ybnxjG5Kyb55e2+uXPunbkzz83tXSawGXAMSqAFJvn0VgVn9D2CKfBFn487At0al9GZ0VGAXpAnPzZMQW+DXJNIXNnGOTr9n08Gv3NxsHsGpeCJzyB4Bbboz6mXO1kQTmNPqpbK7xWwBvop6jVWQT3rEBATK8w7L1Ax/lGw6CSNTSmF47NthFT4BCyAPr7vAg/gwgcvg/VYGmBDMrCZ7IIamJCaX4Mbx7pUTOCYT4OiA5JeSUSfwQs4ENGRcEE+jTfTJg1wyv9lST2kGawignlY6/5Kw7RUwhq3Ixf56xId0/C2L++rMlGJbPavztCJymK7Mijt4Mtiu4Tmb0YCguAdmJep0RM3Yxs6ucnYEMyCbV5O6N8mPyQhrrDl0THVWwy2xCkppHZDJv3C1jWT1ojVp8Z2S6WdGqalstjtJ2zwWE0PwTmYlpaqiz8ap+nnkbZp8ZO4I2vGTfq5TT+I+nH74ES8RoRv6WuYk4W4Ho37FmAALHt+CwITqggAAAAASUVORK5CYII=") no-repeat}#diva-canvas-backdrop{z-index:105;position:fixed;top:0;left:0;bottom:0;right:0;display:none;background:rgba(50,50,50,0.9)}#diva-canvas-tools{color:#333;position:fixed;top:10px;left:10px;width:230px;z-index:108;background:#FFF;padding-bottom:10px;box-shadow:2px 2px 4px 0 rgba(0,0,0,0.5)}#diva-canvas-tools .action-buttons{clear:both;margin-bottom:5px;text-align:right}#diva-canvas-tools .action-buttons a{color:#333;text-decoration:none;background:#F1F1F1;padding:5px;border:1px solid #AAA}#diva-canvas-tools .action-buttons a:last-child{border-left:0}#diva-canvas-tools .action-buttons a:hover{background:#FDFDFD}#diva-canvas-toolbar{height:16px;padding:10px;padding-bottom:0}#diva-canvas-toolbar div{height:18px;width:18px;background-repeat:no-repeat;cursor:pointer;z-index:109;display:inline-block;margin-right:5px}#diva-canvas-toolbar span{vertical-align:top;float:right}#diva-canvas-toolwindow{position:relative;margin:10px}#diva-canvas-close{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAQVJREFUeNqslLEOgjAQhq+NkwnExAcSGE1gchBnH8tVXNycmIhvJBAGEhO8n7SJIqXFeMklbbl+vR5/T3RdR0mSLInozF7WdX0siuJJExaG4cLzvBMP123b7vM8b0Qcx4Dc2CMECSGuVVWlJhggvu9fOIGdWrqzb6XKJNKBCEAgNjhAYBv2DKByuGEMZoBoe4ggCIwB+poY22IEij11GgJ1liYI6tmDHFKnKQjmUn/AQp+iymAO5APkCjPJQ9KfTDroxCqND9CcYo/BpA2CmozVbAj7myD7V2wTm8o6ZdiXMDFnRoOrrV1+sUUaK4l+oloB2dqIAYa9B/HW2DK84l8b20uAAQCLjwLqt9305AAAAABJRU5ErkJggg==")}#diva-canvas-close:hover{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJFJREFUeNqslLEKwCAMREPpVP9/756hgnOhf5ZGuYIUSSxN4JZ4PKPRkIiQxqY6VLtqrTlL1QNvUSXkGuRUCcQWDBDu/BcYrRJ5aQgbQB5lQoniwQyIgGEaGOu+Z2I39iCNMVm6f/TJy3SbQR86Y3Z0oagIP1rIZYe0P+xBRn6REvVpE0bBvzHSDbb8Z7DdAgwARUeIgUWvd3IAAAAASUVORK5CYII=")}#diva-canvas-minimise{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFlJREFUeNpi/P//PwM1ABMDlcCoQUPRIBZfX9+jjIyM2kA2I9RgRjTMgEYjY5j6ayxAQ6yo4CAt6nkNiG8AsQYQ/4fif0hsWP5Bpv9jUXudcTSvDUGDAAIMAJ9XGBGo0H6VAAAAAElFTkSuQmCC")}#diva-canvas-minimise:hover{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAE9JREFUeNpi/P//PwM1ABMDlcCoQUPRIEYgPgrE2lA2E5RGxgxoNDKGqb8GIv4PKq+xAPENINaAuuwflEbGDGg0Moapv844mteGoEEAAQYAhHkXuTBtU6sAAAAASUVORK5CYII=")}#diva-canvas-buttons div{cursor:pointer;background-repeat:no-repeat;width:20px;height:20px;padding:5px;display:inline-block;background-position:center center}#diva-canvas-buttons div.clicked{background-color:#DDD}#diva-canvas-buttons .contrast{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXlJREFUeNq0lb1KxEAUhZPJgqS08BksLERZSJ1CbPLTBUFwW0uF7dZSW42drTZKupg0VqkXgtpYWPkAFjaBNGviOTIJIayLbuKBIXeGvd/M5ObcVcuyVNryPE/L83xXVdUhptWgUg7kpLquPwRB8NnOVdtA13XXsXaN0FAWa4oNR2EYvjYXRU2GHMc5BuxJwt4QXwohdhC/zAEa/C1zmFstDqrAtu0jPM4ZE5Rl2ThJkhnnSJr9cEqdOchlfFFfWV6TJ1vBZvu4xl0zC8BnPDYXXD9H3havL1gA+c6421Ub9kvpZJAlWE35zt6LojhRlpdBlpCfBnUTx/FHByALOxSNb+xR6a7/AfYqIe1EbffAS/sH0uhycmBZ1moXGlmCXYNGx1iDb0878KZkCbYgdg3aB+MQNtxbAkbrjcj6rrJsQRMWCce+hdl90zQHfwBOqjZW90O2INlxzqSv2b7uNU2LYUkf8415JyMsiiK/lKDeG6za91/AlwADAP4sxwU5rOxvAAAAAElFTkSuQmCC")}#diva-canvas-buttons .contrast:hover,#diva-canvas-buttons .contrast.clicked{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAM1JREFUeNpi/P//PwM6YGRkZAZS7kBsgoRB4AwS3gnU+xdDM8hAZAwE6kB8AiRFAIPUqGPoRzKIEYgLgfgbVMM9IJ4AxC5AfAWHod+gehixGViIpBBkEAuS3AUCri1EMRDqTZBtoDCJwBIMhAz8BvM+CDAjhdlUdMOINBAWpiCzGLygAq+AWJACA0HYiwkpSSwCan7PQBkwQTbwHAPlgDYGUhUwQbMRCBhRwbwzNDUwDlgoCFJqIPUTNtWzHk0KB5oUX9QqYBmpXQUABBgA5FBbDJAAnEYAAAAASUVORK5CYII=")}#diva-canvas-buttons .brightness{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAb5JREFUeNqsVM1KAlEUnju5cKH0Bi6rhbToBdIWQuXPboIKX6GdEEWRFIG7HiGIwNkpRtAi6QVaSIS57A1CFy5spu+rM3IbR70LDxzOnXu/78y55+cq3/eteVIsFt9om81meh42ZpmJKc6y9Y9CoVDOZrPGZGLJiXTIA6XUbTKZvHMcZynEzYmOhRhiydGdjqMZDAb3AOxguTccDt9hq8EZcvcZjg6YE2KhdXInHLbb7RH+ekBn8Xj8RoqxCVOBbgjsFVrDD16IAdaCvcL3d+BHTatyqVQ6xtklMdCebK9AfVzztNFoXEfxIh1KZM/QD8/znFar9ds2+Xw+bdu2i+UqdIuRzqyyJrym0p1RuOaeRF2J7C9p2iCXOSkAc9bTnelOwekFecU6BfMkxyPbWrBMy+EDzDautx6OUvLYwfIRt9k1zWGN1WQB6CDkjEXxBWMW4cLahuPECWDTuq77NauxgV0G9oiNDexkY3PQOZsyTucgVec8aWcwFxy9fr9/yEn7l8NEIrEfzCb/GiKnpD3GIpg6OcL9E0YYKJJezmQyMX2PitekSw3vE0uOvqcMX+yuvDpri3qJR6aN/SPAAFsVBiFOQpN5AAAAAElFTkSuQmCC")}#diva-canvas-buttons .brightness:hover,#diva-canvas-buttons .brightness.clicked{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPlJREFUeNq8VDsOgzAMTSA7c5fODLkDW4/BPVh6Hi7A0nOgirlL5+58aqNHZWgoGaxGeiJ5fjZOeMRO02SOhrW25Sdp/ZHWmbgRqzPJppOSEJ3MWs5ZkbxlbJsDPKkJ6cIjdmZsuBRaXpQfXgicEFxlcgisEQ24r4LirSzMsC4IDeEJ8LxALIN2vZsfHVSEgTASOmAEV+3m7RQrkHgneMF7cMPSaWzBBt34QMwj1oRyLQVa4bMLkQ+yAp/Xi+b5jl06nPOJ5uyAG0J9YrSH9pb/81HUbKNqbPVfT/1yEEVdoJv5DAO8k8VmY0fe2B0slmvdxH2sr98CDAClFhsKAJcnrgAAAABJRU5ErkJggg==")}#diva-canvas-buttons .rotation{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAATCAYAAACdkl3yAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAe5JREFUeNqsVM9LAlEQdrdFrdhD2CGCqEsQBVFLUR2iPIo/UAy7FVR0iS4RHetP8BSEYUV18mKprPQD7A8oD4EdOnQoCbqG5Fa72vdslE3MFBv42Nl5b743M2/ecPl83lAuLpdrHJ9FYBYQdUuPQEDTtKAsyy9OpzPGcdwpJMDpiTweT08ulwvDNmSoLp/ANTAByJFIxF4icrvd/SC5gNrJ/nFSGmv7UJPkbGTbAC/pRXmHWApESEWC4RywAB8gWTaZTMehUEgrD4VFjdRSUFuKNuz3CqTvEEmWnYic47/lBJJNPQkTBGMTEI0N+igZVqLRaLxacZD+Ns/ze9irIRL1m1t7ZhGtU3j3ZrP58I8iG2Kx2E0lOw8Mkx6sVJNahRG1UVp3hgaE1xXs6V+IIO2NEilU7KlGicKkr6G7u+px9vl8RrRPIRMetQmQvRU94q+DpElRlDOo7PHO8GjAK/bwaN2LE5ZqIGnOZrMsgGkWDKS7UGxBEObwKd7aLsjCdru9oxKJw+GYRCS3qOkC3falJEn+0uuHcx8+R8AI+bzRy09iTxqOA9DZeBlkd0N7TlRVncdsev0xj6xWqyCK4gbUrbJRUS4P8FtFWeTSBKg0IVG8XkTAHvMYwcI6H7VI4UKSmUzmIJFIKHqfLwEGAAbH1Astu6nmAAAAAElFTkSuQmCC")}#diva-canvas-buttons .rotation:hover,#diva-canvas-buttons .rotation.clicked{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAATCAYAAACdkl3yAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAWVJREFUeNqslL8vBEEUx2fvRKK4QvYKUYhGIjoUNEJ7KkEvUWh0Eg1/hfpy7iotiRwSEYVCQoKGRETBiUolyBFnfea8kZfN7uXOesknMzvz3nd+7JtngiAwYbBRyMMzBIo7WIUu8GAPFuoxIYFeOA8FR/EBx9Iv21hPBIzneQM0+9BtfuwBinAm3+0wBTPSd/YOvtvJEDzJCnZiDtIxx7a7fg3tcNpNnsjAG+SiBJTQesRR8/bCcrAj25zHuWgaGFcwTNMBNfiU9tHOHYjqddxxmiFF8KAsVmCgZv5oVqhT+lcmgaVUv/JfQtmkQlXpj5uEtiF/7QV6WvlTkuFZ9zomVGJttSCShkPJo1k3WFZii02I2IQsqJglN+HDvZrYtqUiRmQMbpTvbv2ulUM/nCoH+zCPYA2WoQQX8KV8NiETVY/aYEUqQKN6dAuTOva3HoUeZp885hHBl8y/lPpUIq6qY74FGADbGm+BLZVKoQAAAABJRU5ErkJggg==")}#diva-canvas-buttons .zoom{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAjpJREFUeNqklEtoE1EUhueGkGysioJQI9aNIApFqA/oRlCpMSVvCBafC0Vw51JXUijFjVAoyIjdFNxEE8hDyULM0heCtLjQjaCLCqKLjJCYzCR+U2/kzjjTBHrgzDnnPv75z73nXNHr9TS3xOPx/UKIo+gE83vQVfx37Xb7da1W+6ltIEIFjMViW4PB4ALuFZ/1BnqzXC4vDQRMpVLHu91uHnevMm+i39FR176nMJ4plUqGGzBgf9Lp9HaAnyhgL4gnDcMYgc1u0zR3MXYe/Sbnp5m/58swkUgs41+0B4jvVKvV2Z7H4WYymZ2dTqcMu0m5drpSqTxzMATskAL23A/MlmKx+AOwC7i/1tkIcfe/lNl77F8QCNzyA+sLR/AZo8vwYC6X2+IARCak32o0Gu+1IYR/vurvb7Vah90M+xexVq/XTW04+aKAj7lveVX6+5LJ5MgwaJzduJLiRweg3QHKjZ8cMuVT0rXC4fAHByCd8dI+PxkvDGJJVUxB4pwEfpzP55sOwEKhsIa9LeMxuqWYzWZHvcDoptOY5T5R0p33LGz+KHgQ6sQn5Lj9ACwy/Ab7FR1n3RTWrkEh13QZu0RhP/Ls5Wg0uiMUCi3izgw4wt9oSAJb7L+sggp3HcM0DbM53AMKm/U6ZXyJI5kn1TPse+gFKvwagw7Y1mw2j9gPBmtWIpHIiq7rHeVyrmIeuEHFgE7bUMjmGqx1FXRTgJLpdcz9v/UuPgW0TQqPhQ6pG7hvLcs6+0eAAQA9LheEWJANtAAAAABJRU5ErkJggg==")}#diva-canvas-buttons .zoom:hover,#diva-canvas-buttons .zoom.clicked{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXFJREFUeNqklD1LA0EQhvcEwcIQP7AIil9gJYigFoKVio02tmoT8av1F4i9pb2ooP9BEWwEFQLCkUA6ETQ2WmhhwOj6DszBMOyuCxl4uOV29rns7GwSa63RkSTJCB5TYAL0gRSUwB3y300oSJiB6ADH9NrDB9iSazRSNgOeleAbvDjEFyDvFSI6lewKTIM2nu8BK6Amco5CwlORuEdldCYb0w1uRO6SI8eMioRLn0wsGAKfnJ+6hEUhnAzJxKIDzv8B7XKuhVuDog4eTFzc8pPWj8sJetHP4xq+0IgUPonxgBamPB5EQ+cihWNiXNXCUnZBwGykcI6fVMOyniyALy7yI8j9cyAL4hDPfX24q1qn4JHNg1fO+6Wt+4S03WshfQP7YJHrtQZOWGJFy6yG7nIXOAv8MWTUhbihpa5tLYOK+jWW63wIesG6Txoqfp5Ps8jN36rmN1xSE3PVAh/d1NKmhCzdFtJq00KW7oB7MPwnwADMqkVBYMpLoAAAAABJRU5ErkJggg==")}#diva-canvas-buttons .red{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAq9JREFUeNqUVM1PE1EQf7vLLt2NK+y2FmMglUSNYuCkqV5IOJlYAm1IOOnBCxz4G9Do0Ysxhj+g6KkElCaYxgMHQyiJPVnpQgxpDZhl+Sr9YLuw2z5nK61t3a11kknmzZv5vZl5M0NgjJEVEQRBjoyM+OH+Phxvnasl0EfD4fAH0Jcs/awAx8bGunVdfwZiP7KmOE3Tz+fn53f+CTg+Ps5omvYWRA9qTj8cDsfjUCh0VqskG60AbLIFMJM857aoKSBE7EMtkpVtHaDP57sMRe9sFdC0NX1sAcHAhf6TGn3aag+iKCbb29s5QRAuQsHpXC6nKoqSy+fz5cLzHMd0u1y8wPPciabpSjqd1WQ5aQkYCASuFovFp8PDw70AyFT0pVIJybKcYXQde7q6OkiKIip3hqI4e4PBNxsE8eImxqlqyn6/32sYxiyIfevr63LtixAxmpyYuPRkaspNsyxRe9e5tLQLir4iQrMJgvCWAUdHR3mIYhpqUY4qmUweSZKUrjgNDg7SLMchk+8MDVUjN1ZWjsXl5cPzIwNjM71JELyZ8iPgusLGYrGUqqqFe17vFUi/GpXgdCKaohA1Nye7FxZ26z4HMHTAaoNeshyvRCKh4EIBX+vp8Yhudxn0eH8fU8HgT3cksmflA/XrNyO8YdcSHSzLbG9uGsB/mtnpZGwbHbDMTzm0M8irqt6oo46O9CaAhyR8hmRnsA092Khj4/Fckz6XSKhhxO42WyiomUymuk2Ke3tnws6OamcPPx0hYVmuAeiiTQro0+pqSj89xQawODOTIu3TXRzAeK08KTBar3ieNzdwoNHwIJs9+RyNfnuwsYE6trYMG7z3FxB6/deChZV/F84Poa7myneB/J0kya8gv3sZDiP9d88OQA9dBz4wawbeH29j/KWC8UuAAQBHuCIrBf77FQAAAABJRU5ErkJggg==")}#diva-canvas-buttons .red:hover,#diva-canvas-buttons .red.clicked{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAn9JREFUeNqUlN9rUmEYx9/3HHOezWPaZk7ZUCEDp0ERLSq63ajd1EUsGEHQxa4kiLqs6KY/YF1IdBGsYGw3xS666mZMibXI0QwDFRcc3JjS2TTmFPX0fU8qzs6x7YXveXif8zyf93l/UkVRiFajlHIwN6BLkL/hTkCfoPfIq2vmaQEBG4J5Cp0h2m0deoZc6b9AwIwwbyA36d5+QneQX2l3chqB04eAkUbMdKdTCzhBDt8mugIx3UEY6xGA1kaOboUD5OjtQI6hveNwODKCIPS6XC6L2Ww+ls/n9zKZTFGWZXXhB6zWHr/Hc9xpt/cVisVKSpJ2eiUpo7nLKN0D8yQUCt1yOp3GZkCtViOpVGpXrFb5EZ/PxvM8bf6rZ7Pkajj8GYS7QUVJtKYM2EWYWWgkEolsto+IismLmRn783D4hEkQaPs/7/IyM6Nwfo1TOqYCARNhH0NqVbFY7Fc0GpWbSbcnJ42ixUJEUSTXpqZaMGMkQobi8WbXBOjrdUptPDr3oMvtIyeTyZ1yuVwPBAKWsfFxHoOq/j5Af6ysEPviIgksLXVuDiusbtC7Xpj6tmF/nxsNBt2Dw8Oqb1uSiHVujnjX1rTvP+49A57WOw/9FouQWF0lTK01NZuJVycewHNsU/J6wN1CodzpMxUKugcSu53lGk+SZvueTv+T3b+xoQtEhV8Y8INewKYs/87lcq0q6dYWOdmlQgBnORxstkDv9IJeLSyky6WSUi2VyKn5eUL1p/vSrygf1ZuCY2GC7z50Uyv4it/f87BScfvSaZseDNN4cF5R9g48sABfgLneePLZpU9C36C3+BhQ3SPu75k9yzaArRmbJqusyfgjwACqZ9e9Z++6DQAAAABJRU5ErkJggg==")}#diva-canvas-buttons .green{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAVCAYAAABG1c6oAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAp5JREFUeNqkVVtrE0EUPjPbbi7t2oZUk0hDCyUWC+bJIv4FhZAg0pf65EP/RUv9A6k+K4L6UBCJrSAKfWlDUbAQWoOBlDSXtptIDU2aGyTZHc+kaYjrbhrxg9k9cy7fnplzZpYwxkAPZJlQeAB+FO/iuNlWx3B8gXfwni0xVTdOj5DskXEQYAnFW6CP76DAMvOyo0sJyQ8i4us1MJiAXiCQxucjNsPq3Wqq47pwKRnHuc+CVk11HO9Dv9DxpZrlOvE1Cv1jtB1jkCGBMfhXaGIGuieOHUdy6PaQ1Q3uK8MwPHgCJ9UES5TyLN/aeBvYxCk6JTnAYT1jZ400pM8yO5lkp6m6qxwIBCYVRVn0Lnsf2mw28cJBYQrElXiRoee0MD0igEAubIVCob67uPtWEIQnoVAo1Vmy3++/02w2X6E4c7xxnO3O2iJYIDgZvLoysXLNQi2k2yZvyDkew2M5B9cJkUhEwiyfEUIkrqhlarX69brZ7rRb+HzOOTdoF+3ERE3gNrmFaDmqcH1iL1HIhXJya5mECMgxu7q6+oFnOI/jj43NvsimYp9jslk1g9Pk7GTlMrvAzMwQ34hnj54fJTXl4RzzgsfjeYxfcGmLV9mvVNSUqtrH7SN1qEOhUoCDwwO2+XLzMBPO/DSouTqAZB6jjpBESUxH081065Sdw0qtYo8musGXnDeyVqvVRj+6LuQpZhgzsuZyuZJWJ8tyybDHkYtidT4ZOZTL5WqxWOzcJlzGDKuGRxu56Pr6+lcU1oycwuFwqtFoMD62trZSPcjWONdAO5OgJEn8Bg5oHU9PTyvb29vR9sloGvCFkOPpXxesz+ebxfk93At+OsdQ3qeU7qH8pu0yr6qqt90Zv9AeQ/kjZvat5y/gf/BbgAEA/G4wfR8yHDAAAAAASUVORK5CYII=")}#diva-canvas-buttons .green:hover,#diva-canvas-buttons .green.clicked{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAnBJREFUeNqUlE9vElEQwOftIlAC1EPRUlPDwT9ZaoyJGqOfgHgxXlvjxUMPTfQT1IN+gsbSKEkv6oGTvREbYmJiKKG6yUZtV9M9YCiHhQ2QJYEKLM952wW3yAIOGd5782Z+O/Pe7BJKKQwTAoSD77CMkxgub1jmL0DhPVyBVxRod2jcMCDZJxdweI3Btx2elsX/hzRKlbFAkideaICEsMswSgj8BB9coxF6ZDdz/zg24PlYGBPmw3zHZrhPSugcgkmEQBnLPuOYIcLOTww7zjJkxjiWTGAO/lcGYlz2xczBzJ5bcBthPsz7OT9oHQ0K7QLoXd3cD3ABmD81DyFXCOpGHYpG0VB/qHsgDAESQiI4PF35ttKZPTvL9+wG/uTfMnSx7aKeKLjI3xxUVTXW762vYc8+w7vI90tG2C2z7wCimReZoj3rKW4KEnMJ2Dy3CT7Od6LabDx7yGJYrMUADicBHFdR3cwgJaTyTnqn0gtaDC5CkAua5S5NL/VhuQ+5ivhSLFtLFrvKWKy0R6h37E9W3imVlrtFF64vBGKnYwRLOj5DPgC7td3u9sb2Yfpx+tfA9bD0aQ8YHry8wqdCvZartSNCZLrFt0CrayDJEo0vx/OZNxnV4c677IQvOnVE0Bv0iB/Fjghi3+Z3+z0jmugSuxTNaVfX9fYkNptoDCg77SqKUp/EZhOZAVNOu9VqtVEqlVq9NZsz2whgisOG/IyTLSePZDKZbzablCmbj4BtMZb5tcH+8aLhCer9YZ6CIJivhyzLHScY6hqyjk58vhB8E4e7jMFebdQD1K+oby2XB6hXrc7QrPNPWVWa8keAAQAeE/tQULPnhgAAAABJRU5ErkJggg==")}#diva-canvas-buttons .blue{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAnhJREFUeNqUVU1sElEQngftypafohHbgERJ0yY1aevBtNGz6YWLx4ZUrzTx7NEYPXhpYiINh5409dRy0HLogWBim1SpgDGpKVwoWDbtGlAQjG2xsH6LgGB313aSj3kzb+Zj5r3ZXSZJEikJY0wHdQu4Dgw33AngHfAKeTXFPCVCkF2EegCMkLJsAg+RK/yXEGQc1AvgEmnLZ+A28ivtTp1CoPcEZNSI8f7rVCJ008nFrUmIdvuhrKcgtDZyVCs8T6eXjpyudqOvbzJtMOyY7PbLvSaThcvn935mMslioZA7rJdjtXIul8tss9l6yuXyr2w2WxIEIa14y4x9wqyx5zMza+MOh74VUK1WaXs7+U2SikdDQ4O9er2eNfdEUaz4fL4Alo/Ak2m1DLJJ/H7AcnxtzdXRD88baG7u8Tm/33+B53nWvre+vi5CXQEWcJYTdULGNs+C7BnWBtmxteWk1dW/J+HxuMliMZLZbKKpKQ/X9EcikWI8Hv/aMGX/fZCaUSG7B8Pe/s/h8AQtL/cTx5nI4bC1/Ha77OMpFArtBoPBtMLlTKMU3Q2i449fLDZAlUoXjY3lyOn8c6aCUKVAILW3sfHmi8qNj8i9XVWbB4uFo2iUAc33ACOjcZjXGKEhtCztqu2WSjUF396hBmFePsOY2m4mUznmS6VelzQIEzLhglaFonjUsnM58bBQeP9Dg3BFJ0nDYbQ9rxaxuPid9vcl4EhaWrqbwqirhb7EcEfrTwpj8R6iM09QrVcpcmCAFbq7fTvJ5PyBGhnwFFwHHS9YxhI3Ue0d4BoseTY/EtXewp4lGpV7nwZGgUH5AhqfhBW5sibHbwEGAKuO5gwYgh5eAAAAAElFTkSuQmCC")}#diva-canvas-buttons .blue:hover,#diva-canvas-buttons .blue.clicked{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAqZJREFUeNqUVU1ME1EQfq/dH2ytVKq4TZtgYjRAAjclHvDA0SZtDbGnmnjDhLs3JHomMZ45WT21IbX8GLzBSYIciGBrMbXFn7bAVhe6/d12n7O1xbLuVpxkd2dnvvnevJnZt5gQgrQEY2xwu91e8N+E14GmOQb2t/Pz86/ALmvGaRGOj487JUmaBnUIacsWTdOP5+bmvv2T0OfzMeVy+QWofaiz7HZ1dd0LBoPVdqNBjQKyiVOQKdLXxKKOhJCxC51StLAnCF0uFwdFt56WUMEqMbqEALiA/lPUMVT7S0/PQJKi8iartfccy5poURSKPP81XyjkG4U3m80Mx3EWEFOpVJJ4nj9Kp9NJzS5j/PEyQrVHMzOf73IczbQAsiyjbPbLIUWVicPh6IaMcMsnCEJ1YWEhZDQan4TD4dTxljGOjiBUD4A2uLhozbSvyLI0mpy8f3Fi4kEvTTO43ReNRrPwGKzVagGv1zvSIMQ4boE8pkBvZLWyYvuxuir9bAWNjd2gTaYzSLlGR28dZx6Px4VEIpFr1pGBnUx5PB4LZCj5wXSisLOzV1KhEJs2Ghlks3UfZ2WznUcUxaDNzc3M+vp6UtUfhcOvNGVYq3uRyKU9npeJ3b7X53SyDdJMpkKWlhLf9/e39nXmcggI8VW9kbBYKGZjo1yDq21M7EyHKboGWyY5Pe/hIZHUtlJJkDoQ5pQux/S8Ozv1vNp2dBTLdxjyGBDKy7rL5QzFg4N69Q+ZAPpuscO3vWwgZHgN1IgeKBAopSoVmVSrdbK9/RyGl+iRReDgXWt+emefIlRQTuA7amAmgwuhkLjd3/8GSVKiprNuWBTFZ38dsBh/uA7327+PfAJzRT6B/h4h+qXb/VCB+GGAh6FWymTwEKv8El5DZu9aHL8EGADAeiNURmYqjAAAAABJRU5ErkJggg==")}#diva-canvas-pane{background:#DDD;padding-bottom:10px}#diva-canvas-pane p{margin-left:10px;padding-top:10px}#diva-canvas-pane p .link{cursor:pointer}#diva-canvas-pane p .link:hover{text-decoration:underline}#diva-canvas-mode{text-transform:capitalize}#diva-canvas-slider{width:188px;margin:0 auto;display:block}#diva-canvas-slider .handle{margin-left:-6px}#diva-canvas-minimap{height:210px;width:210px;cursor:crosshair;margin-bottom:10px;background:#000}#diva-canvas{position:absolute;left:0;right:0;margin:0 auto;z-index:107;cursor:url("data:application/octet-stream;base64,AAACAAEAICACAAcABQAwAQAAFgAAACgAAAAgAAAAQAAAAAEAAQAAAAAAAAEAAAAAAAAAAAAAAgAAAAAAAAAAAAAA////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD8AAAA/AAAAfwAAAP+AAAH/gAAB/8AAA//AAAd/wAAGf+AAAH9gAADbYAAA2yAAAZsAAAGbAAAAGAAAAAAAAA//////////////////////////////////////////////////////////////////////////////////////gH///4B///8Af//+AD///AA///wAH//4AB//8AAf//AAD//5AA///gAP//4AD//8AF///AB///5A////5///8="),pointer}#diva-map-viewbox{border:2px solid #AAA;position:absolute;top:10px;left:10px;cursor:crosshair;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:none}.overflow-hidden{overflow:hidden !important}#diva-canvas-wrapper{z-index:106;position:absolute;top:0;left:0;bottom:0;right:0;overflow:scroll}.canvas-throbber{z-index:110;position:fixed}.diva-download-icon{background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAVCAYAAABG1c6oAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2dJREFUeNqcVV1Ik1EYPt+nNacmc3P+hFbqTC/c1K2WMppRmkokUhuZClkwwTFjgRdFg66MLroRIRgYqUkbQcws6aJA6y6oKaTlnILJWHUxJlupyHI9Z37f+BhmPy88Oz/fe57z/p13TDQaJYnS3NycjMEIaAENUAmIgFngPYfH4+PjwcSzTCIhyJQYhgA12V2+AF0gfb4jIYgYDDeAW8BehmFISUlJDAqFgqSkpJDFxUXi9XrJ/Pw82dzc5DmGgasgDtFFsoDcAvTRSW5uLunp6YkqlcoZgYvfdToddV/j9/u1AwMDorm5Oap+CUjjQrRtIawrhUUzmKfU1NQQq9X6WSwWd+L7VEtLi3dra0vB35qamlrudDo3oPsA43GHw8F/aoOVDpYmAGQPKZlMJiPd3d3PQEbjOEW15HL5AWGMGhoaDmJYwpna1tbWm5WVlduxY5h74MpjMa8F2VG6CbJvEomkHdMw+bNEQXK7q6vrOawm4JBg7wqbnp6up18LCgqIVqu98JdkccnPz+/UaDTrdJ6VlXWGRfZO0kVOTs5XDK/Jv0sAFsbOra2tlbP4ofEiiN9H8p8CyyY5wn3JeyCxawKBFaESsnsM2c1DTFnh/vT0dI3L5RKHw+Gnk5OTEbo3Ozvr4b+zhYWFP+hkZWWlQHjQaDTqEPQnq6urwloly8vLNpVKZQZZfG9hYeEw52WUzc7Ojrm6sbGhEh5sb29/0dbW9jPRvaKiImKz2WhJRfg9JPYUl9ggK5VKYwENhUJy1NFZwdlPBoPBXFFREd+gz89isbzF2Cd4+4eCweAJrmY9LGI1UlZWxhfnfSjIeOWkpKRBELgyMzNja5PJFMa7PofpFkdG4zsUiUREGRkZpKmpycEi5Utms/kNvR3FKYfCIyhKeVKUUyfetb+uro7U19dfxJZf0OLu0ofBXRbAZcN8t9k/MTHhtdvtqb9pTUeQcQPLstc5snIMI0AVXev1etLb23sa05fCftg6NjbmGB0dFbYmt7DbcM2Wopq2OKrQ2NhIOjo6BuGyaacGa/X5fHf6+/tFHo9n12JGAmiLI2gOdiyvAes7dmxIKdwbcrvd1ZSUNlTaWKnVxcXF8aarVqt9aWlpl6H/ate/AL7ggfOca9TFKuiJUAUfuDC8A5w7NZJfAgwAxxpMCajpN8wAAAAASUVORK5CYII=") no-repeat}.diva-download-icon:hover{background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAVCAYAAABG1c6oAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAwBJREFUeNqclV9I01EUx+9+C3M6JzYhhnMNfcgxI6ipaD6sPxuKJRphjYIMweWD0EtPgxj40ENImD5EPuzFN+tBn5YIawUxZ249JXtQQkasLHNuobH5u33P2G9cpyJ24cPd79x7vvf8zv2dMxXnnBUPlUpVhakPXMzTCHbAZxABYTAN3+w+ZxIUwbgOvtHSEXwC1mJ/lRIhotJhegHu07NGo2Ht7e2spaWFNTc3s1QqxRYWFnKEw2Hl8L/gCXjGFSEhsmnldLvdzldWVnZgfw+eg3vgIZgEkUAgINfV1YnRDhd08mIuZdHr9XJZlj/AXq/T6arE18RbJPOO9q2tra+9vb2KfRvzWSVIgyRJv2nB4XDw3d1dDxYkWvR4PGdEQRwgC/mqSCQSszU1NYooXdQJEvSQobKyki8vL8+KCT5CMCc6MzOTEPZclWpra7tItaOjY7uhoeEBO95IdXd337ZYLLkHvV5/SUomk/SNMUQYxPSLHX8EcUEUJdNqtVckJLeCHoxGY4D950Aev9CcTqcbpcIxwWCsqFq6fD6fU7RlMhmy3wQO0R6Px9doLi0tPUnqcj7hj8WE9/T0vD6sSoaGhkbFvWazeZ7snZ2d3xk+Fcobx+X4xU3ZbLbf6XTuE3O73XTTl8W91dXVP2htcHAwwAYGBj7SQ0lJCRW/Wdy4uro6bTAYCmJWq5VvbGw8Lar9G0JReNni4uIwTlCc3gFJcND6/f41tVrNUds8FAotwaYWxPQoilx0bW1tfHNzs54WdFNTUz+F1xqlL14QPT8yMpKZmJj4g98mQewUeEs+5eXlPBqNzhdqGThcLldxa7IozihHagy3Dmtx4+PjadhPi4JsfX19EgkXRXfyKaCI7wI3eAWWlD1lZWV8bGyMOlffnm6TRwNezs3NcZPJdFRz5a2trTwWi1GLe3RggxXGNSTXh8sw4sLo0lgkEmGIhtlsNtbU1JRruKj9EC6rH/v3FsRB/ykYVI53gA1cwJ5zqA7qztH8K4fAGyAXO/4TYAAJjVy1G5e84AAAAABJRU5ErkJggg==") no-repeat}.diva-autoscroll-icon{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAASCAYAAABSO15qAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAGhJREFUeNpiYGBgKABigf///zOQg0EARH4A4gZyDIIZ8B/JoAJKDIDhB0CcQIkBRBtEyABkgxwoMQCGD6AbRKoBGAYxQgXIBRuZGKgAKPIC3QLxArnRSHZCIjspk52ZKMrOFBUoAAEGAKnq593MQAZtAAAAAElFTkSuQmCC")}.diva-autoscroll-prefs{display:none;margin-right:.6em}.diva-autoscroll-prefs-text{float:left}.diva-autoscroll-prefs-input{float:right;margin-left:.6em}.diva-autoscroll-pps{width:9em}.annotation-overlay{padding:1px}.diva-annotations-icon{float:right;border-right:none;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAXCAYAAAAcP/9qAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAVVJREFUeNrEltFtwyAQhknUBbwCKyQjOCOkI8QD+CErpA8ewB6hjOCMUK/AChnBgfY/6ReiIcZIPumMDwwf3OGD3TzPagv58I+u68S+Or041ZnjPZw2Tg1sP1bvdED9r7Rt+wcm6A3vEwZZIhX63AOovCuGC1gD6jt+UudcqWjyVQy+h3FGORSAesAI6CnwnG+rGcwxWgvt4cEf1DHclzYGXiM3QBt4rcLKBW6pLAbusTk99EChY/gRcVelwD1cLNDLi19NlQKnoLLBprDjfgvoGrBATQ6UE0gO1NImWgTNWTG79xgZ/C1oDthDv5DhQgjbB/xexcCSXscXK9Vor0uDNQatAdDByjUdDKrk5hIZl8Q0BU7N9BTYVnJv4BEVqY+CDZL8FbM3/3yfOjJrukyYd2Js6Xbw7XTO1BFeS57rvLkG3D6mFXGfsIAm9eFuq1vmU4ABAJY9c+Sb7cPEAAAAAElFTkSuQmCC")}.annotations-icon-active{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAXCAYAAAAcP/9qAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAVRJREFUeNrEltFtwyAQhknUBbwCKyQjOK9+S0eIR8gK6Qj2COXNr84I9QqskBEcaP+TfiEaYozkk874wPDBHT7YzfOstpAP/2iaRuyr04tTnTnew2nr1MD2Y3VOe9T/yjAMf2CC3vA+YZAlUqHPPYDKu2K4gDWgvuMndc6ViiZfxeB7GGeUfQGoB4yAngLP+baawRyjtdAOHvxBHcN9aWPgNXIDtIXXKqxc4JbKYuAOm9NDDxQ6hh8Rd1UK3MHFAr28+NVUKXAKKhtsCjvut4CuAQvU5EA5geRALW2iRdCcFbN7j5HB34LmgD30CxkuhLB9wO9VDCzpdXyxUo32ujRYY9AaAB2sXNPBoEpuLpFxSUxT4NRMT4FtJfcGHlGR+ijYIMlfMXvzz/epI7Omy4R5J8aWbgffTudMHeG15LnOm6vH7WNaEfcJC2hTH+62umU+BRgAQ41z5HnPmSYAAAAASUVORK5CYII=")}.diva-inner.annotations-hidden .diva-highlight{display:none}.metadata-label{font-weight:bold}.diva-metadata-link{font-size:1em;line-height:1.8em} -/*# sourceMappingURL=diva.min.css.map */ diff --git a/build/css/diva.min.css.map b/build/css/diva.min.css.map deleted file mode 100644 index f750bc3d..00000000 --- a/build/css/diva.min.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["viewer.less","mixins.less","plugins/canvas.less","plugins/download.less","plugins/autoscroll.less","plugins/iiif-highlight.less","plugins/iiif-metadata.less"],"names":[],"mappings":"AAGA,cACI,gBACA,WACA,oBAAA,WAAA,CAEA,mCACI,oBAAA,AACA,aAAA,0BAAA,qBAAA,CAPR,iCAWQ,oBAAA,aAAA,CAIR,YACI,kBACA,iBACA,gBACA,eACA,aAAA,CAGJ,yBACI,sBACA,aACA,gBACA,aACA,qBAAA,CAEA,6DACI,SAAA,CAIR,aACI,qBACA,eACA,YACA,WAEA,iBACA,wBACA,UAEA,yBACA,4BACA,2BC1CA,qBAAA,CD6CA,sCACI,wBAAA,CAGJ,8BACI,WACA,cAAA,CAIR,YACI,YCxDA,sBD2DA,cAAA,CAEA,kBACI,oBAAA,CAIR,YACI,aACA,iBACA,mBACA,kBAAA,CAGJ,mCACI,iBAAA,CAGJ,iBACI,WACA,yBAAA,sBAAA,qBAAA,gBAAA,CAGA,4CACI,0KAAkB,CAGtB,0CACI,mLACA,gBAAA,CAGR,kBACI,WAAA,CADJ,+BAIQ,iBACA,yBAAA,sBAAA,qBAAA,gBAAA,CAIJ,eACI,mBACA,gBAAA,CAGA,gBACI,qBACA,iBAAA,CAGA,sBACI,SAAA,CAGJ,wBACI,aACA,sBACA,kBACA,WACA,uBACA,sBACA,gBACA,SAAA,CAGA,uBACI,sBACA,WACA,eACA,YACA,iBACA,mBACA,gBACA,uBACA,cAAA,CAGJ,2DACI,wBAAA,CAGhB,sBACI,k1IAAkB,CAGtB,2BACI,kaAAkB,CAGtB,kCACI,8YAAkB,CAGtB,gBACI,qBACA,iBAAA,CAGA,mBACI,kBACA,SACA,UACA,aACA,wCAAA,CAGA,gCACI,gBACA,aAAA,CAGJ,oBACI,0RAAkB,CAGtB,gBACI,8VAAkB,CAGtB,gBACI,0PAAkB,CAG9B,gBACI,0zCAAkB,CAGtB,mDACI,oBAAA,CAGR,uBACI,eACA,SACA,WACA,YACA,aCpMA,sBDsMA,gBC9KA,wCAAA,CDuKJ,iFAWQ,eAAA,CAXR,yCAeQ,eAAA,CAfR,2EAmBQ,QAAA,CAnBR,wHAwBQ,UACA,aAAA,CAzBR,sCA6BQ,cAAA,CAIR,YACI,oBAAA,AACA,aAAA,WACA,mBCnOA,sBDqOA,kBACA,gBACA,iBACA,gBACA,aACA,oBAAA,WAAA,CAGJ,oBACI,kBACA,MACA,MAAA,CAGJ,eACI,kBACA,MACA,SACA,OACA,QACA,aAAA,CAGA,YChPA,gfDkPI,kBACA,gBACA,aAAA,CAEA,0BClPJ,ufAAA,CDuPI,WACI,4CACA,kBACA,wBAAA,CAGZ,yBACI,kBACA,SAAA,CAGJ,iBACI,kBACA,UACA,WAAA,CAHJ,qBAMQ,qBACA,YACA,WACA,cAAA,CAIR,iBCnQI,sBACA,0BAIA,uBACA,2BDgQA,YACA,0BACA,MACA,OACA,SACA,QAAA,CAGJ,YACI,gBC3SA,sBD6SA,aACA,YACA,kBCvRA,wCAAA,CD2RJ,iBACI,cAAA,CADJ,uBAIQ,UAAA,CACA,6BACI,YAAA,CAIR,+BACI,UACA,UAAA,CAKR,qBACI,0BAAA,CAGJ,aACI,kBACA,SACA,UAAA,CACA,yBAiEJ,aAhEQ,WAAA,CAAA,CAKR,eCvVI,aDyVA,kBACA,WACA,YClUA,87BDoUA,sBACA,sBCjUA,yCDmUA,QACA,SACA,kBACA,gBAAA,CAIJ,YACI,kBACA,YACA,aACA,sBACA,sBACA,yCACA,QACA,SACA,mBACA,kBACA,YACA,aAAA,CAGJ,kBACI,WACA,YACA,YACA,0gBACA,kBACA,QACA,SAAA,CAEA,wBACI,+WACA,WAAA,CAIR,YACI,kBACA,WACA,sBACA,sBACA,yCACA,QACA,SACA,oCAAA,AACA,gCAAA,YACA,iBAAA,CExXJ,kBDdI,0uBAAY,CAEZ,wBACI,kiCAAY,CCchB,sBACI,swBAAY,CACZ,4BACI,8uBAAY,CAKxB,sBACI,YACA,eACA,MACA,OACA,SACA,QACA,aACA,6BAAA,CAGJ,mBACI,WACA,eACA,SACA,UACA,YACA,YACA,gBACA,oBDxBA,wCAAA,CCgBJ,mCAYQ,WACA,kBACA,gBAAA,CAdR,qCAiBY,WACA,qBACA,mBACA,YD5DR,qBAAA,CC+DQ,gDACI,aAAA,CAGJ,2CACI,kBAAA,CAMhB,qBACI,YACA,aACA,gBAAA,CAHJ,yBAKQ,YACA,WACA,4BACA,eACA,YACA,qBACA,gBAAA,CAXR,0BAcQ,mBACA,WAAA,CAIR,wBAEI,kBACA,WAAA,CAGJ,mBACI,0gBAAkB,CAElB,yBACI,8WAAkB,CAI1B,sBACI,kSAAkB,CAElB,4BACI,sRAAkB,CAI1B,yBAEQ,eACA,4BACA,WACA,YACA,YACA,qBACA,iCAAA,CAEA,iCACI,qBAAA,CAXZ,+BAgBQ,kqBAAkB,CAElB,4EACI,8bAAkB,CAnB9B,iCAgBQ,8vBAAkB,CAElB,gFACI,0fAAkB,CAnB9B,+BAgBQ,8zBAAkB,CAElB,4EACI,0oBAAkB,CAnB9B,2BAgBQ,s6BAAkB,CAElB,oEACI,0pBAAkB,CAnB9B,0BAgBQ,kkCAAkB,CAElB,kEACI,kgCAAkB,CAnB9B,4BAgBQ,0iCAAkB,CAElB,sEACI,8+BAAkB,CAnB9B,2BAgBQ,s/BAAkB,CAElB,oEACI,sjCAAkB,CAiC9B,kBACI,gBACA,mBAAA,CAFJ,oBAKQ,iBACA,gBAAA,CANR,0BASY,cAAA,CAEA,gCACI,yBAAA,CAMhB,kBACI,yBAAA,CAGJ,oBACI,YACA,cACA,aAAA,CAHJ,4BAMQ,gBAAA,CAIR,qBACI,aACA,YACA,iBACA,mBACA,eAAA,CAGJ,aACI,kBAEA,OACA,QACA,cACA,YDzMA,+eAAQ,CC6MZ,kBACI,sBACA,kBACA,SACA,UACA,iBACA,yBAAA,ADpOA,sBCoOA,ADpOA,qBCoOA,ADpOA,iBAAA,YAAA,CCyOJ,iBACI,0BAAA,CAGJ,qBACI,YACA,kBACA,MACA,OACA,SACA,QACA,eAAA,CAGJ,iBACI,YACA,cAAA,CCxPJ,oBFQI,0zCAAY,CAEZ,0BACI,krCAAY,CGXpB,sBACI,sTAAkB,CAGtB,uBACC,aACA,iBAAA,CAGD,4BACC,UAAA,CAGD,6BACC,YACA,gBAAA,CAGD,qBACC,SAAA,CCnBD,oBACE,WAAA,CAGF,uBACE,YACA,kBACA,knBAAkB,CAGpB,yBACE,knBAAkB,CAGpB,+CACE,YAAA,CCjBF,gBACE,gBAAA,CAGF,oBACE,cACA,iBAAA,CAAA","file":"diva.min.css","sourcesContent":["@import (reference) \"variables.less\";\n@import (reference) \"mixins.less\";\n\n.diva-wrapper {\n min-height: 100%;\n width: 100%;\n flex-grow: 1;\n\n &.diva-wrapper-flexbox {\n display: flex;\n flex-direction: column;\n }\n\n >*:not(.diva-outer) {\n flex-shrink: 0;\n }\n}\n\n.diva-title {\n text-align: center;\n font-weight: bold;\n font-size: 1.3em;\n max-width: 50em;\n margin: 0 auto;\n}\n\n.diva-button, .diva-input {\n box-sizing: border-box;\n outline: none;\n border-radius: 0;\n font: inherit;\n vertical-align: middle;\n\n &::-moz-focus-inner {\n padding: 0;\n }\n}\n\n.diva-button {\n display: inline-block;\n cursor: pointer;\n height: @buttonSize;\n width: @buttonSize;\n\n line-height: @buttonSize;\n -webkit-appearance: none;\n padding: 0;\n\n background-color: @buttonBg;\n background-repeat: no-repeat;\n background-position: center;\n .frame(@buttonFrame);\n\n &:hover, &:focus {\n background-color: @buttonHover;\n }\n\n &.diva-button-text {\n width: auto;\n padding: 0 @buttonPadding;\n }\n}\n\n.diva-input {\n height: @inputSize;\n .frame(@inputFrame);\n\n padding: 0 @inputPadding;\n\n &:focus {\n border-color: @inputHoverFrame;\n }\n}\n\n.diva-label {\n margin: 0 @toolbarGroupMargin;\n line-height: @buttonSize;\n vertical-align: top;\n white-space: nowrap;\n}\n\n.diva-tools-left, .diva-tools-right {\n margin-bottom: @toolbarGroupMargin;\n}\n\n.diva-tools-left {\n float: left;\n user-select: none;\n}\n\n .diva-zoom-out-button, .diva-grid-out-button {\n background-image: data-uri(\"@{iconPath}zoomout.png\");\n }\n\n .diva-zoom-in-button, .diva-grid-in-button {\n background-image: data-uri(\"@{iconPath}zoomin.png\");\n margin-left: -1px;\n }\n\n.diva-tools-right {\n float: right;\n\n .diva-button {\n margin-left: -1px;\n user-select: none;\n }\n}\n\n .diva-page-nav {\n white-space: nowrap;\n margin-right: @toolbarGroupMargin;\n }\n\n .diva-goto-form {\n display: inline-block;\n position: relative;\n }\n\n .diva-goto-page-input {\n width: 5em;\n }\n\n .diva-input-suggestions {\n display: none;\n box-sizing: border-box;\n position: absolute;\n width: 100%;\n background-color: white;\n border: solid 1px #aaa;\n border-top: none;\n z-index: 1;\n }\n\n .diva-input-suggestion {\n box-sizing: border-box;\n width: 100%;\n margin-top: 3px;\n padding: 2px;\n padding-left: 5px;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n cursor: pointer;\n }\n\n .diva-input-suggestion.active, .diva-input-suggestion:hover {\n background-color: @highlightBlue;\n }\n\n .diva-fullscreen-icon {\n background-image: data-uri(\"@{iconPath}fullscreen.png\");\n }\n\n .diva-toggle-nonpaged-icon {\n background-image: data-uri(\"@{iconPath}toggle-nonpaged.png\");\n }\n\n .diva-toggle-nonpaged-icon-active {\n background-image: data-uri(\"@{iconPath}toggle-nonpaged-active.png\");\n }\n\n .diva-view-menu {\n display: inline-block;\n position: relative;\n }\n\n .diva-view-options {\n position: absolute;\n top: @buttonSize;\n z-index: 1;\n display: none;\n box-shadow: 1px 1px 4px 0 rgba(0,0,0,0.1);\n }\n\n .diva-view-options .diva-button {\n margin-top: -1px;\n display: block;\n }\n\n .diva-document-icon {\n background-image: data-uri(\"@{iconPath}document.png\");\n }\n\n .diva-grid-icon {\n background-image: data-uri(\"@{iconPath}grid.png\");\n }\n\n .diva-book-icon {\n background-image: data-uri(\"@{iconPath}book.png\");\n }\n\n .diva-link-icon {\n background-image: data-uri(\"@{iconPath}link.png\");\n }\n\n .diva-zoom-label, .diva-grid-label, .diva-page-label {\n display: inline-block;\n }\n\n.diva-fullscreen-tools {\n position: fixed;\n top: 15px;\n right: 30px;\n z-index: @fullscreenZIndex + 1;\n padding: 15px;\n .frame(@toolsFrame);\n background: @toolsBg;\n .pretty-shadow;\n\n .diva-tools-left, .diva-tools-right {\n margin-bottom: 0;\n }\n\n .diva-tools-right {\n margin-left: 2em;\n }\n\n .diva-label, .diva-page-label {\n margin: 0;\n }\n\n /* prevent variable number of digits in labels from resizing .diva-fullscreen-tools */\n .diva-zoom-label, .diva-grid-label, .diva-page-label {\n width: 8em;\n display: block;\n }\n\n .diva-page-nav {\n margin-right: 0;\n }\n}\n\n.diva-outer {\n display: flex;\n clear: both;\n background: @viewerBg;\n .frame(@viewerFrame);\n position: relative;\n overflow: hidden;\n min-height: 100px;\n min-width: 200px;\n height: 700px;\n flex-grow: 1;\n}\n\n.diva-viewer-canvas {\n position: absolute;\n top: 0;\n left: 0;\n}\n\n.diva-viewport {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n overflow: auto;\n}\n\n .diva-inner {\n .grab;\n position: relative;\n overflow: hidden;\n margin: 0 auto;\n\n &.diva-grabbing {\n .grabbing;\n }\n }\n\n .diva-page {\n box-shadow: 7px 7px 6px -6px rgba(0,0,0,0.3);\n position: absolute;\n background-color: @pageBg;\n }\n\n.diva-page-tools-wrapper {\n position: absolute;\n z-index: 3;\n}\n\n.diva-page-tools {\n position: relative;\n top: -@pluginIconSize;\n height: @pluginIconSize;\n\n div {\n display: inline-block;\n height: @pluginIconSize;\n width: @pluginIconSize;\n cursor: pointer;\n }\n}\n\n.diva-fullscreen {\n .full-width;\n .full-height;\n z-index: @fullscreenZIndex;\n position: fixed !important;\n top: 0;\n left: 0;\n margin: 0;\n border: 0;\n}\n\n.diva-popup {\n background: @linkBg;\n .frame(@buttonFrame);\n padding: .6em;\n z-index: @fullscreenZIndex + 1;\n position: absolute;\n .pretty-shadow;\n}\n\n.diva-link-popup {\n font-size: 10pt;\n\n input {\n width: 18em;\n &:focus {\n outline: none;\n }\n }\n\n &.in-fullscreen {\n top: 150px;\n right: 30px;\n }\n}\n\n// Used for body in fullscreen mode\n.diva-hide-scrollbar {\n overflow: hidden !important;\n}\n\n.diva-slider {\n position: relative;\n top: 0.6em;\n float: left;\n @media (max-width: 480px) {\n width: 100px;\n }\n}\n\n// The loading indicator, shown if the AJAX request is slow\n.diva-throbber {\n .hidden;\n position: absolute;\n width: @throbberWidth;\n height: @throbberHeight;\n .loading;\n background-color: @white;\n border: 1px solid @grey;\n .pretty-shadow;\n top: 50%;\n left: 50%;\n margin-left: -@throbberWidth / 2;\n margin-top: -@throbberHeight / 2;\n}\n\n// Error message box, only shown if there is an error\n.diva-error {\n position: absolute;\n width: 400px;\n height: 200px;\n background-color: #fff;\n border: 1px solid #ddd;\n box-shadow: 2px 2px 4px 0 rgba(0,0,0,0.5);\n top: 50%;\n left: 50%;\n margin-left: -220px;\n margin-top: -120px;\n z-index: 120;\n padding: 0 1em;\n}\n\n.diva-error-close {\n width: 18px;\n height: 18px;\n border: none;\n background: #fff data-uri(\"@{iconPath}close.png\");\n position: absolute;\n top: 1em;\n right: 1em;\n\n &:hover {\n background-image: data-uri(\"@{iconPath}close-hover.png\");\n cursor: hand;\n }\n}\n\n.diva-modal {\n position: absolute;\n width: 32em;\n background-color: #fff;\n border: 1px solid #ddd;\n box-shadow: 2px 2px 4px 0 rgba(0,0,0,0.5);\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n z-index: 120;\n padding: 2em 2.2em;\n}\n\n","@import (reference) \"variables.less\";\n\n.hidden() {\n display: none;\n}\n\n// Shortcut for a 1px solid border\n.frame(@colour) {\n border: @borderSize solid @colour;\n}\n\n.plugin-icon(@plugin-name) {\n background: data-uri('@{iconPath}plugins/@{plugin-name}.png') no-repeat;\n\n &:hover {\n background: data-uri('@{iconPath}plugins/@{plugin-name}-hover.png') no-repeat;\n }\n}\n\n.grab() {\n cursor: data-uri(\"@{iconPath}openhand.cur\"), pointer;\n}\n\n.grabbing() {\n cursor: data-uri(\"@{iconPath}closedhand.cur\"), move !important;\n}\n\n.loading() {\n background: data-uri(\"@{iconPath}loading.gif\") no-repeat center;\n}\n\n.pretty-shadow(@distance: 4px) {\n box-shadow: 2px 2px @distance 0 rgba(0, 0, 0, 0.5);\n}\n\n.full-width() {\n width: 100% !important;\n max-width: 100% !important;\n}\n\n.full-height() {\n height: 100% !important;\n max-height: 100% !important;\n}\n","@import (reference) \"../variables.less\";\n@import (reference) \"../mixins.less\";\n\n/* Begin canvas plugin */\n\n// Colours - should not be changed\n@black: #000;\n@darkGrey: #333;\n\n// Dimensions - should not be changed\n@toolsWidth: 230px;\n\n// Defines a base z-index for the backdrop div\n@canvasZIndex: @fullscreenZIndex + 5;\n\n// Colour scheme\n@canvasBackdropBg: rgba(50, 50, 50, 0.9);\n@canvasToolsText: @darkGrey;\n@canvasToolsBg: @white;\n@canvasButtonText: @darkGrey;\n@canvasButtonBg: @lightGrey;\n@canvasButtonHoverBg: @lighterGrey;\n@canvasPaneBg: @grey;\n@canvasPreviewBg: @black;\n@canvasViewboxFrame: @primaryBorder;\n\n.diva-canvas-icon {\n .plugin-icon(\"canvas\");\n\n &.new {\n background: data-uri('@{iconPath}plugins/canvas/canvas-enter-stored.png') no-repeat;\n &:hover {\n background: data-uri('@{iconPath}plugins/canvas/canvas-enter-stored-hover.png') no-repeat;\n }\n }\n}\n\n#diva-canvas-backdrop {\n z-index: @canvasZIndex;\n position: fixed;\n top: 0;\n left: 0;\n bottom: 0;\n right: 0;\n display: none;\n background: @canvasBackdropBg;\n}\n\n#diva-canvas-tools {\n color: @canvasToolsText;\n position: fixed;\n top: 10px;\n left: 10px;\n width: @toolsWidth;\n z-index: @canvasZIndex + 3;\n background: @canvasToolsBg;\n padding-bottom: 10px;\n .pretty-shadow;\n\n .action-buttons {\n clear: both;\n margin-bottom: 5px;\n text-align: right;\n\n a {\n color: @canvasButtonText;\n text-decoration: none;\n background: @canvasButtonBg;\n padding: 5px;\n .frame(@buttonFrame);\n\n &:last-child {\n border-left: 0;\n }\n\n &:hover {\n background: @canvasButtonHoverBg;\n }\n }\n }\n}\n\n#diva-canvas-toolbar {\n height: 16px;\n padding: 10px;\n padding-bottom: 0;\n div {\n height: 18px;\n width: 18px;\n background-repeat: no-repeat;\n cursor: pointer;\n z-index: @canvasZIndex + 4;\n display: inline-block;\n margin-right: 5px;\n }\n span {\n vertical-align: top;\n float: right;\n }\n}\n\n#diva-canvas-toolwindow {\n // Needs to be set to ensure the viewbox is hidden when minimising\n position: relative;\n margin: 10px;\n}\n\n#diva-canvas-close {\n background-image: data-uri(\"@{iconPath}close.png\");\n\n &:hover {\n background-image: data-uri(\"@{iconPath}close-hover.png\");\n }\n}\n\n#diva-canvas-minimise {\n background-image: data-uri(\"@{iconPath}plugins/canvas/canvas-minimise.png\");\n\n &:hover {\n background-image: data-uri(\"@{iconPath}plugins/canvas/canvas-minimise-hover.png\");\n }\n}\n\n#diva-canvas-buttons {\n div {\n cursor: pointer;\n background-repeat: no-repeat;\n width: 20px;\n height: 20px;\n padding: 5px;\n display: inline-block;\n background-position: center center;\n\n &.clicked {\n background-color: @canvasPaneBg;\n }\n }\n\n .button (@adjustmentName) {\n background-image: data-uri(\"@{iconPath}plugins/canvas/canvas-adj-@{adjustmentName}.png\");\n\n &:hover, &.clicked {\n background-image: data-uri(\"@{iconPath}plugins/canvas/canvas-adj-@{adjustmentName}-hover.png\");\n }\n }\n\n .contrast {\n .button(\"contrast\");\n }\n\n .brightness {\n .button(\"brightness\");\n }\n\n .rotation {\n .button(\"rotation\");\n }\n\n .zoom {\n .button(\"zoom\");\n }\n\n .red {\n .button(\"red\");\n }\n\n .green {\n .button(\"green\");\n }\n\n .blue {\n .button(\"blue\");\n }\n}\n\n#diva-canvas-pane {\n background: @canvasPaneBg;\n padding-bottom: 10px;\n\n p {\n margin-left: 10px;\n padding-top: 10px;\n\n .link {\n cursor: pointer;\n\n &:hover {\n text-decoration: underline;\n }\n }\n }\n}\n\n#diva-canvas-mode {\n text-transform: capitalize;\n}\n\n#diva-canvas-slider {\n width: 188px;\n margin: 0 auto;\n display: block;\n\n .handle {\n margin-left: -6px;\n }\n}\n\n#diva-canvas-minimap {\n height: @toolsWidth - 20px;\n width: @toolsWidth - 20px;\n cursor: crosshair;\n margin-bottom: 10px;\n background: @canvasPreviewBg;\n}\n\n#diva-canvas {\n position: absolute;\n // Center it (if it's smaller than the browser window)\n left: 0;\n right: 0;\n margin: 0 auto;\n z-index: @canvasZIndex + 2;\n .grab;\n}\n\n#diva-map-viewbox {\n border: 2px solid @canvasViewboxFrame;\n position: absolute;\n top: 10px;\n left: 10px;\n cursor: crosshair;\n user-select: none;\n .hidden;\n}\n\n// Added to the body upon entering canvas mode (to hide the scrollbar)\n.overflow-hidden {\n overflow: hidden !important;\n}\n\n#diva-canvas-wrapper {\n z-index: @canvasZIndex + 1;\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n right: 0;\n overflow: scroll;\n}\n\n.canvas-throbber {\n z-index: @canvasZIndex + 5;\n position: fixed;\n}\n\n/* End canvas plugin */\n","@import (reference) \"../mixins.less\";\n\n/* Begin download plugin */\n\n.diva-download-icon {\n .plugin-icon(\"download\");\n}\n\n/* End download plugin */\n","@import (reference) \"../variables.less\";\n\n/* Begin autoscroll plugin */\n\n.diva-autoscroll-icon {\n background-image: data-uri(\"@{iconPath}plugins/autoscroll-play.png\");\n}\n\n.diva-autoscroll-prefs {\n\tdisplay: none;\n\tmargin-right: .6em;\n}\n\n.diva-autoscroll-prefs-text {\n\tfloat: left;\n}\n\n.diva-autoscroll-prefs-input {\n\tfloat: right;\n\tmargin-left: .6em;\n}\n\n.diva-autoscroll-pps {\n\twidth: 9em;\n}\n","@import (reference) \"../variables.less\";\n\n/* Begin iiif-highlight plugin */\n\n.annotation-overlay {\n padding: 1px;\n}\n\n.diva-annotations-icon {\n float: right;\n border-right: none;\n background-image: data-uri(\"@{iconPath}plugins/annotation.png\");\n}\n\n.annotations-icon-active {\n background-image: data-uri(\"@{iconPath}plugins/annotation-active.png\");\n}\n\n.diva-inner.annotations-hidden .diva-highlight {\n display: none;\n}\n\n/* End iiif-highlight plugin */\n","/* Begin iiif-metadata plugin */\n\n.metadata-label {\n font-weight: bold;\n}\n\n.diva-metadata-link {\n font-size: 1em;\n line-height: 1.8em;\n}\n\n/* End iiif-metadata plugin */\n"],"sourceRoot":"/source/css"} \ No newline at end of file diff --git a/demo/beromunster-iiif.json b/demo/beromunster-iiif.json deleted file mode 100644 index 65a525a5..00000000 --- a/demo/beromunster-iiif.json +++ /dev/null @@ -1,15513 +0,0 @@ -{ - "@context": "http://iiif.io/api/presentation/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/manifest.json", - "@type": "sc:Manifest", - "label": "Beromunster", - "sequences": [ - { - "@type": "sc:Sequence", - "canvases": [ - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_001.json", - "@type": "sc:Canvas", - "label": "Bm 001", - "height": 4445, - "width": 2846, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_001.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4445, - "width": 2846, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_001.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_001.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_002.json", - "@type": "sc:Canvas", - "label": "Bm 002", - "height": 4224, - "width": 2619, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_002.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4224, - "width": 2619, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_002.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_002.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_003.json", - "@type": "sc:Canvas", - "label": "Bm 003", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_003.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_003.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_003.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_004.json", - "@type": "sc:Canvas", - "label": "Bm 004", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_004.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_004.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_004.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_005.json", - "@type": "sc:Canvas", - "label": "Bm 005", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_005.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_005.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_005.json" - } - ], - "viewingHint": "non-paged" - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_006.json", - "@type": "sc:Canvas", - "label": "Bm 006", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_006.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_006.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_006.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_007.json", - "@type": "sc:Canvas", - "label": "Bm 007", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_007.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_007.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_007.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_008.json", - "@type": "sc:Canvas", - "label": "Bm 008", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_008.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_008.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_008.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_009.json", - "@type": "sc:Canvas", - "label": "Bm 009", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_009.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_009.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_009.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_010.json", - "@type": "sc:Canvas", - "label": "Bm 010", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_010.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_010.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_010.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_011.json", - "@type": "sc:Canvas", - "label": "Bm 011", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_011.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_011.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_011.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_012.json", - "@type": "sc:Canvas", - "label": "Bm 012", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_012.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_012.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_012.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_013.json", - "@type": "sc:Canvas", - "label": "Bm 013", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_013.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_013.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_013.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_014.json", - "@type": "sc:Canvas", - "label": "Bm 014", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_014.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_014.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_014.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_015.json", - "@type": "sc:Canvas", - "label": "Bm 015", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_015.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_015.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_015.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_016.json", - "@type": "sc:Canvas", - "label": "Bm 016", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_016.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_016.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_016.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_017.json", - "@type": "sc:Canvas", - "label": "Bm 017", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_017.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_017.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_017.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_018.json", - "@type": "sc:Canvas", - "label": "Bm 018", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_018.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_018.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_018.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_019.json", - "@type": "sc:Canvas", - "label": "Bm 019", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_019.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_019.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_019.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_020.json", - "@type": "sc:Canvas", - "label": "Bm 020", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_020.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_020.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_020.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_021.json", - "@type": "sc:Canvas", - "label": "Bm 021", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_021.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_021.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_021.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_022.json", - "@type": "sc:Canvas", - "label": "Bm 022", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_022.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_022.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_022.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_023.json", - "@type": "sc:Canvas", - "label": "Bm 023", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_023.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_023.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_023.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_024.json", - "@type": "sc:Canvas", - "label": "Bm 024", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_024.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_024.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_024.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_025.json", - "@type": "sc:Canvas", - "label": "Bm 025", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_025.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_025.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_025.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_026.json", - "@type": "sc:Canvas", - "label": "Bm 026", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_026.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_026.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_026.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_027.json", - "@type": "sc:Canvas", - "label": "Bm 027", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_027.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_027.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_027.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_028.json", - "@type": "sc:Canvas", - "label": "Bm 028", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_028.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_028.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_028.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_029.json", - "@type": "sc:Canvas", - "label": "Bm 029", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_029.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_029.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_029.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_030.json", - "@type": "sc:Canvas", - "label": "Bm 030", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_030.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_030.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_030.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_031.json", - "@type": "sc:Canvas", - "label": "Bm 031", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_031.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_031.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_031.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_032.json", - "@type": "sc:Canvas", - "label": "Bm 032", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_032.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_032.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_032.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_033.json", - "@type": "sc:Canvas", - "label": "Bm 033", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_033.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_033.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_033.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_034.json", - "@type": "sc:Canvas", - "label": "Bm 034", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_034.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_034.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_034.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_035.json", - "@type": "sc:Canvas", - "label": "Bm 035", - "viewingHint": "non-paged", - "height": 4378, - "width": 4781, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_035.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4378, - "width": 4781, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_035.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_035.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_036.json", - "@type": "sc:Canvas", - "label": "Bm 036", - "viewingHint": "non-paged", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_036.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_036.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_036.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_037.json", - "@type": "sc:Canvas", - "label": "Bm 037", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_037.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_037.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_037.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_038.json", - "@type": "sc:Canvas", - "label": "Bm 038", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_038.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_038.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_038.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_039.json", - "@type": "sc:Canvas", - "label": "Bm 039", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_039.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_039.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_039.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_040.json", - "@type": "sc:Canvas", - "label": "Bm 040", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_040.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_040.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_040.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_041.json", - "@type": "sc:Canvas", - "label": "Bm 041", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_041.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_041.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_041.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_042.json", - "@type": "sc:Canvas", - "label": "Bm 042", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_042.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_042.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_042.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_043.json", - "@type": "sc:Canvas", - "label": "Bm 043", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_043.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_043.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_043.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_044.json", - "@type": "sc:Canvas", - "label": "Bm 044", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_044.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_044.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_044.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_045.json", - "@type": "sc:Canvas", - "label": "Bm 045", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_045.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_045.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_045.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_046.json", - "@type": "sc:Canvas", - "label": "Bm 046", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_046.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_046.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_046.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_047.json", - "@type": "sc:Canvas", - "label": "Bm 047", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_047.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_047.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_047.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_048.json", - "@type": "sc:Canvas", - "label": "Bm 048", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_048.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_048.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_048.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_049.json", - "@type": "sc:Canvas", - "label": "Bm 049", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_049.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_049.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_049.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_050.json", - "@type": "sc:Canvas", - "label": "Bm 050", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_050.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_050.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_050.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_051.json", - "@type": "sc:Canvas", - "label": "Bm 051", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_051.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_051.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_051.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_052.json", - "@type": "sc:Canvas", - "label": "Bm 052", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_052.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_052.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_052.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_053.json", - "@type": "sc:Canvas", - "label": "Bm 053", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_053.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_053.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_053.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_054.json", - "@type": "sc:Canvas", - "label": "Bm 054", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_054.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_054.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_054.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_055.json", - "@type": "sc:Canvas", - "label": "Bm 055", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_055.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_055.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_055.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_056.json", - "@type": "sc:Canvas", - "label": "Bm 056", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_056.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_056.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_056.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_057.json", - "@type": "sc:Canvas", - "label": "Bm 057", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_057.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_057.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_057.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_058.json", - "@type": "sc:Canvas", - "label": "Bm 058", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_058.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_058.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_058.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_059.json", - "@type": "sc:Canvas", - "label": "Bm 059", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_059.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_059.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_059.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_060.json", - "@type": "sc:Canvas", - "label": "Bm 060", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_060.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_060.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_060.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_061.json", - "@type": "sc:Canvas", - "label": "Bm 061", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_061.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_061.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_061.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_062.json", - "@type": "sc:Canvas", - "label": "Bm 062", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_062.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_062.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_062.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_063.json", - "@type": "sc:Canvas", - "label": "Bm 063", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_063.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_063.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_063.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_064.json", - "@type": "sc:Canvas", - "label": "Bm 064", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_064.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_064.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_064.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_065.json", - "@type": "sc:Canvas", - "label": "Bm 065", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_065.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_065.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_065.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_066.json", - "@type": "sc:Canvas", - "label": "Bm 066", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_066.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_066.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_066.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_067.json", - "@type": "sc:Canvas", - "label": "Bm 067", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_067.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_067.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_067.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_068.json", - "@type": "sc:Canvas", - "label": "Bm 068", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_068.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_068.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_068.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_069.json", - "@type": "sc:Canvas", - "label": "Bm 069", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_069.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_069.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_069.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_070.json", - "@type": "sc:Canvas", - "label": "Bm 070", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_070.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_070.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_070.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_071.json", - "@type": "sc:Canvas", - "label": "Bm 071", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_071.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_071.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_071.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_072.json", - "@type": "sc:Canvas", - "label": "Bm 072", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_072.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_072.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_072.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_073.json", - "@type": "sc:Canvas", - "label": "Bm 073", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_073.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_073.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_073.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_074.json", - "@type": "sc:Canvas", - "label": "Bm 074", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_074.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_074.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_074.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_075.json", - "@type": "sc:Canvas", - "label": "Bm 075", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_075.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_075.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_075.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_076.json", - "@type": "sc:Canvas", - "label": "Bm 076", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_076.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_076.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_076.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_077.json", - "@type": "sc:Canvas", - "label": "Bm 077", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_077.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_077.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_077.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_078.json", - "@type": "sc:Canvas", - "label": "Bm 078", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_078.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_078.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_078.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_079.json", - "@type": "sc:Canvas", - "label": "Bm 079", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_079.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_079.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_079.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_080.json", - "@type": "sc:Canvas", - "label": "Bm 080", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_080.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_080.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_080.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_081.json", - "@type": "sc:Canvas", - "label": "Bm 081", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_081.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_081.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_081.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_082.json", - "@type": "sc:Canvas", - "label": "Bm 082", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_082.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_082.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_082.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_083.json", - "@type": "sc:Canvas", - "label": "Bm 083", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_083.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_083.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_083.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_084.json", - "@type": "sc:Canvas", - "label": "Bm 084", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_084.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_084.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_084.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_085.json", - "@type": "sc:Canvas", - "label": "Bm 085", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_085.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_085.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_085.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_086.json", - "@type": "sc:Canvas", - "label": "Bm 086", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_086.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_086.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_086.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_087.json", - "@type": "sc:Canvas", - "label": "Bm 087", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_087.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_087.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_087.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_088.json", - "@type": "sc:Canvas", - "label": "Bm 088", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_088.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_088.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_088.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_089.json", - "@type": "sc:Canvas", - "label": "Bm 089", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_089.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_089.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_089.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_090.json", - "@type": "sc:Canvas", - "label": "Bm 090", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_090.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_090.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_090.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_091.json", - "@type": "sc:Canvas", - "label": "Bm 091", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_091.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_091.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_091.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_092.json", - "@type": "sc:Canvas", - "label": "Bm 092", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_092.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_092.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_092.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_093.json", - "@type": "sc:Canvas", - "label": "Bm 093", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_093.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_093.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_093.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_094.json", - "@type": "sc:Canvas", - "label": "Bm 094", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_094.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_094.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_094.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_095.json", - "@type": "sc:Canvas", - "label": "Bm 095", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_095.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_095.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_095.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_096.json", - "@type": "sc:Canvas", - "label": "Bm 096", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_096.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_096.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_096.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_097.json", - "@type": "sc:Canvas", - "label": "Bm 097", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_097.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_097.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_097.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_098.json", - "@type": "sc:Canvas", - "label": "Bm 098", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_098.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_098.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_098.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_099.json", - "@type": "sc:Canvas", - "label": "Bm 099", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_099.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_099.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_099.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_100.json", - "@type": "sc:Canvas", - "label": "Bm 100", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_100.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_100.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_100.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_101.json", - "@type": "sc:Canvas", - "label": "Bm 101", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_101.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_101.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_101.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_102.json", - "@type": "sc:Canvas", - "label": "Bm 102", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_102.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_102.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_102.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_103.json", - "@type": "sc:Canvas", - "label": "Bm 103", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_103.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_103.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_103.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_104.json", - "@type": "sc:Canvas", - "label": "Bm 104", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_104.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_104.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_104.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_105.json", - "@type": "sc:Canvas", - "label": "Bm 105", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_105.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_105.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_105.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_106.json", - "@type": "sc:Canvas", - "label": "Bm 106", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_106.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_106.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_106.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_107.json", - "@type": "sc:Canvas", - "label": "Bm 107", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_107.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_107.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_107.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_108.json", - "@type": "sc:Canvas", - "label": "Bm 108", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_108.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_108.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_108.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_109.json", - "@type": "sc:Canvas", - "label": "Bm 109", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_109.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_109.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_109.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_110.json", - "@type": "sc:Canvas", - "label": "Bm 110", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_110.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_110.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_110.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_111.json", - "@type": "sc:Canvas", - "label": "Bm 111", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_111.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_111.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_111.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_112.json", - "@type": "sc:Canvas", - "label": "Bm 112", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_112.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_112.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_112.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_113.json", - "@type": "sc:Canvas", - "label": "Bm 113", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_113.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_113.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_113.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_114.json", - "@type": "sc:Canvas", - "label": "Bm 114", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_114.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_114.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_114.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_115.json", - "@type": "sc:Canvas", - "label": "Bm 115", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_115.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_115.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_115.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_116.json", - "@type": "sc:Canvas", - "label": "Bm 116", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_116.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_116.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_116.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_117.json", - "@type": "sc:Canvas", - "label": "Bm 117", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_117.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_117.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_117.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_118.json", - "@type": "sc:Canvas", - "label": "Bm 118", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_118.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_118.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_118.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_119.json", - "@type": "sc:Canvas", - "label": "Bm 119", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_119.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_119.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_119.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_120.json", - "@type": "sc:Canvas", - "label": "Bm 120", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_120.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_120.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_120.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_121.json", - "@type": "sc:Canvas", - "label": "Bm 121", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_121.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_121.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_121.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_122.json", - "@type": "sc:Canvas", - "label": "Bm 122", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_122.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_122.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_122.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_123.json", - "@type": "sc:Canvas", - "label": "Bm 123", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_123.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_123.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_123.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_124.json", - "@type": "sc:Canvas", - "label": "Bm 124", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_124.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_124.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_124.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_125.json", - "@type": "sc:Canvas", - "label": "Bm 125", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_125.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_125.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_125.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_126.json", - "@type": "sc:Canvas", - "label": "Bm 126", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_126.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_126.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_126.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_127.json", - "@type": "sc:Canvas", - "label": "Bm 127", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_127.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_127.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_127.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_128.json", - "@type": "sc:Canvas", - "label": "Bm 128", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_128.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_128.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_128.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_129.json", - "@type": "sc:Canvas", - "label": "Bm 129", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_129.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_129.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_129.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_130.json", - "@type": "sc:Canvas", - "label": "Bm 130", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_130.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_130.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_130.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_131.json", - "@type": "sc:Canvas", - "label": "Bm 131", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_131.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_131.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_131.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_132.json", - "@type": "sc:Canvas", - "label": "Bm 132", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_132.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_132.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_132.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_133.json", - "@type": "sc:Canvas", - "label": "Bm 133", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_133.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_133.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_133.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_134.json", - "@type": "sc:Canvas", - "label": "Bm 134", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_134.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_134.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_134.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_135.json", - "@type": "sc:Canvas", - "label": "Bm 135", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_135.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_135.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_135.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_136.json", - "@type": "sc:Canvas", - "label": "Bm 136", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_136.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_136.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_136.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_137.json", - "@type": "sc:Canvas", - "label": "Bm 137", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_137.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_137.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_137.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_138.json", - "@type": "sc:Canvas", - "label": "Bm 138", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_138.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_138.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_138.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_139.json", - "@type": "sc:Canvas", - "label": "Bm 139", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_139.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_139.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_139.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_140.json", - "@type": "sc:Canvas", - "label": "Bm 140", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_140.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_140.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_140.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_141.json", - "@type": "sc:Canvas", - "label": "Bm 141", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_141.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_141.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_141.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_142.json", - "@type": "sc:Canvas", - "label": "Bm 142", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_142.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_142.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_142.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_143.json", - "@type": "sc:Canvas", - "label": "Bm 143", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_143.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_143.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_143.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_144.json", - "@type": "sc:Canvas", - "label": "Bm 144", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_144.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_144.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_144.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_145.json", - "@type": "sc:Canvas", - "label": "Bm 145", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_145.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_145.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_145.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_146.json", - "@type": "sc:Canvas", - "label": "Bm 146", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_146.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_146.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_146.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_147.json", - "@type": "sc:Canvas", - "label": "Bm 147", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_147.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_147.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_147.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_148.json", - "@type": "sc:Canvas", - "label": "Bm 148", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_148.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_148.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_148.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_149.json", - "@type": "sc:Canvas", - "label": "Bm 149", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_149.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_149.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_149.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_150.json", - "@type": "sc:Canvas", - "label": "Bm 150", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_150.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_150.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_150.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_151.json", - "@type": "sc:Canvas", - "label": "Bm 151", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_151.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_151.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_151.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_152.json", - "@type": "sc:Canvas", - "label": "Bm 152", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_152.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_152.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_152.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_153.json", - "@type": "sc:Canvas", - "label": "Bm 153", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_153.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_153.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_153.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_154.json", - "@type": "sc:Canvas", - "label": "Bm 154", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_154.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_154.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_154.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_155.json", - "@type": "sc:Canvas", - "label": "Bm 155", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_155.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_155.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_155.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_156.json", - "@type": "sc:Canvas", - "label": "Bm 156", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_156.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_156.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_156.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_157.json", - "@type": "sc:Canvas", - "label": "Bm 157", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_157.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_157.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_157.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_158.json", - "@type": "sc:Canvas", - "label": "Bm 158", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_158.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_158.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_158.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_159.json", - "@type": "sc:Canvas", - "label": "Bm 159", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_159.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_159.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_159.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_160.json", - "@type": "sc:Canvas", - "label": "Bm 160", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_160.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_160.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_160.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_161.json", - "@type": "sc:Canvas", - "label": "Bm 161", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_161.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_161.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_161.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_162.json", - "@type": "sc:Canvas", - "label": "Bm 162", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_162.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_162.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_162.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_163.json", - "@type": "sc:Canvas", - "label": "Bm 163", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_163.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_163.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_163.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_164.json", - "@type": "sc:Canvas", - "label": "Bm 164", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_164.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_164.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_164.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_165.json", - "@type": "sc:Canvas", - "label": "Bm 165", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_165.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_165.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_165.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_166.json", - "@type": "sc:Canvas", - "label": "Bm 166", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_166.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_166.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_166.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_167.json", - "@type": "sc:Canvas", - "label": "Bm 167", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_167.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_167.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_167.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_168.json", - "@type": "sc:Canvas", - "label": "Bm 168", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_168.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_168.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_168.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_169.json", - "@type": "sc:Canvas", - "label": "Bm 169", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_169.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_169.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_169.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_170.json", - "@type": "sc:Canvas", - "label": "Bm 170", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_170.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_170.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_170.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_171.json", - "@type": "sc:Canvas", - "label": "Bm 171", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_171.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_171.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_171.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_172.json", - "@type": "sc:Canvas", - "label": "Bm 172", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_172.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_172.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_172.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_173.json", - "@type": "sc:Canvas", - "label": "Bm 173", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_173.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_173.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_173.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_174.json", - "@type": "sc:Canvas", - "label": "Bm 174", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_174.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_174.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_174.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_175.json", - "@type": "sc:Canvas", - "label": "Bm 175", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_175.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_175.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_175.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_176.json", - "@type": "sc:Canvas", - "label": "Bm 176", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_176.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_176.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_176.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_177.json", - "@type": "sc:Canvas", - "label": "Bm 177", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_177.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_177.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_177.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_178.json", - "@type": "sc:Canvas", - "label": "Bm 178", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_178.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_178.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_178.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_179.json", - "@type": "sc:Canvas", - "label": "Bm 179", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_179.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_179.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_179.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_180.json", - "@type": "sc:Canvas", - "label": "Bm 180", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_180.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_180.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_180.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_181.json", - "@type": "sc:Canvas", - "label": "Bm 181", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_181.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_181.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_181.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_182.json", - "@type": "sc:Canvas", - "label": "Bm 182", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_182.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_182.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_182.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_183.json", - "@type": "sc:Canvas", - "label": "Bm 183", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_183.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_183.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_183.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_184.json", - "@type": "sc:Canvas", - "label": "Bm 184", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_184.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_184.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_184.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_185.json", - "@type": "sc:Canvas", - "label": "Bm 185", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_185.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_185.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_185.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_186.json", - "@type": "sc:Canvas", - "label": "Bm 186", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_186.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_186.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_186.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_187.json", - "@type": "sc:Canvas", - "label": "Bm 187", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_187.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_187.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_187.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_188.json", - "@type": "sc:Canvas", - "label": "Bm 188", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_188.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_188.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_188.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_189.json", - "@type": "sc:Canvas", - "label": "Bm 189", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_189.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_189.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_189.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_190.json", - "@type": "sc:Canvas", - "label": "Bm 190", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_190.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_190.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_190.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_191.json", - "@type": "sc:Canvas", - "label": "Bm 191", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_191.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_191.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_191.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_192.json", - "@type": "sc:Canvas", - "label": "Bm 192", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_192.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_192.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_192.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_193.json", - "@type": "sc:Canvas", - "label": "Bm 193", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_193.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_193.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_193.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_194.json", - "@type": "sc:Canvas", - "label": "Bm 194", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_194.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_194.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_194.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_195.json", - "@type": "sc:Canvas", - "label": "Bm 195", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_195.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_195.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_195.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_196.json", - "@type": "sc:Canvas", - "label": "Bm 196", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_196.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_196.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_196.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_197.json", - "@type": "sc:Canvas", - "label": "Bm 197", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_197.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_197.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_197.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_198.json", - "@type": "sc:Canvas", - "label": "Bm 198", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_198.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_198.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_198.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_199.json", - "@type": "sc:Canvas", - "label": "Bm 199", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_199.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_199.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_199.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_200.json", - "@type": "sc:Canvas", - "label": "Bm 200", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_200.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_200.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_200.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_201.json", - "@type": "sc:Canvas", - "label": "Bm 201", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_201.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_201.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_201.json" - } - ], - "viewingHint": "non-paged" - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_202.json", - "@type": "sc:Canvas", - "label": "Bm 202", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_202.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_202.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_202.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_203.json", - "@type": "sc:Canvas", - "label": "Bm 203", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_203.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_203.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_203.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_204.json", - "@type": "sc:Canvas", - "label": "Bm 204", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_204.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_204.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_204.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_205.json", - "@type": "sc:Canvas", - "label": "Bm 205", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_205.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_205.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_205.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_206.json", - "@type": "sc:Canvas", - "label": "Bm 206", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_206.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_206.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_206.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_207.json", - "@type": "sc:Canvas", - "label": "Bm 207", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_207.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_207.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_207.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_208.json", - "@type": "sc:Canvas", - "label": "Bm 208", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_208.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_208.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_208.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_209.json", - "@type": "sc:Canvas", - "label": "Bm 209", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_209.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_209.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_209.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_210.json", - "@type": "sc:Canvas", - "label": "Bm 210", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_210.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_210.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_210.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_211.json", - "@type": "sc:Canvas", - "label": "Bm 211", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_211.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_211.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_211.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_212.json", - "@type": "sc:Canvas", - "label": "Bm 212", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_212.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_212.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_212.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_213.json", - "@type": "sc:Canvas", - "label": "Bm 213", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_213.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_213.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_213.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_214.json", - "@type": "sc:Canvas", - "label": "Bm 214", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_214.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_214.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_214.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_215.json", - "@type": "sc:Canvas", - "label": "Bm 215", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_215.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_215.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_215.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_216.json", - "@type": "sc:Canvas", - "label": "Bm 216", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_216.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_216.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_216.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_217.json", - "@type": "sc:Canvas", - "label": "Bm 217", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_217.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_217.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_217.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_218.json", - "@type": "sc:Canvas", - "label": "Bm 218", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_218.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_218.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_218.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_219.json", - "@type": "sc:Canvas", - "label": "Bm 219", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_219.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_219.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_219.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_220.json", - "@type": "sc:Canvas", - "label": "Bm 220", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_220.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_220.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_220.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_221.json", - "@type": "sc:Canvas", - "label": "Bm 221", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_221.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_221.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_221.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_222.json", - "@type": "sc:Canvas", - "label": "Bm 222", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_222.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_222.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_222.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_223.json", - "@type": "sc:Canvas", - "label": "Bm 223", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_223.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_223.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_223.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_224.json", - "@type": "sc:Canvas", - "label": "Bm 224", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_224.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_224.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_224.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_225.json", - "@type": "sc:Canvas", - "label": "Bm 225", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_225.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_225.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_225.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_226.json", - "@type": "sc:Canvas", - "label": "Bm 226", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_226.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_226.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_226.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_227.json", - "@type": "sc:Canvas", - "label": "Bm 227", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_227.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_227.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_227.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_228.json", - "@type": "sc:Canvas", - "label": "Bm 228", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_228.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_228.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_228.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_229.json", - "@type": "sc:Canvas", - "label": "Bm 229", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_229.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_229.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_229.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_230.json", - "@type": "sc:Canvas", - "label": "Bm 230", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_230.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_230.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_230.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_231.json", - "@type": "sc:Canvas", - "label": "Bm 231", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_231.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_231.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_231.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_232.json", - "@type": "sc:Canvas", - "label": "Bm 232", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_232.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_232.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_232.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_233.json", - "@type": "sc:Canvas", - "label": "Bm 233", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_233.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_233.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_233.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_234.json", - "@type": "sc:Canvas", - "label": "Bm 234", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_234.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_234.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_234.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_235.json", - "@type": "sc:Canvas", - "label": "Bm 235", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_235.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_235.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_235.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_236.json", - "@type": "sc:Canvas", - "label": "Bm 236", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_236.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_236.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_236.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_237.json", - "@type": "sc:Canvas", - "label": "Bm 237", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_237.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_237.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_237.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_238.json", - "@type": "sc:Canvas", - "label": "Bm 238", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_238.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_238.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_238.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_239.json", - "@type": "sc:Canvas", - "label": "Bm 239", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_239.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_239.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_239.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_240.json", - "@type": "sc:Canvas", - "label": "Bm 240", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_240.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_240.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_240.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_241.json", - "@type": "sc:Canvas", - "label": "Bm 241", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_241.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_241.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_241.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_242.json", - "@type": "sc:Canvas", - "label": "Bm 242", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_242.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_242.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_242.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_243.json", - "@type": "sc:Canvas", - "label": "Bm 243", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_243.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_243.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_243.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_244.json", - "@type": "sc:Canvas", - "label": "Bm 244", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_244.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_244.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_244.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_245.json", - "@type": "sc:Canvas", - "label": "Bm 245", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_245.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_245.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_245.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_246.json", - "@type": "sc:Canvas", - "label": "Bm 246", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_246.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_246.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_246.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_247.json", - "@type": "sc:Canvas", - "label": "Bm 247", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_247.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_247.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_247.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_248.json", - "@type": "sc:Canvas", - "label": "Bm 248", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_248.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_248.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_248.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_249.json", - "@type": "sc:Canvas", - "label": "Bm 249", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_249.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_249.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_249.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_250.json", - "@type": "sc:Canvas", - "label": "Bm 250", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_250.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_250.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_250.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_251.json", - "@type": "sc:Canvas", - "label": "Bm 251", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_251.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_251.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_251.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_252.json", - "@type": "sc:Canvas", - "label": "Bm 252", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_252.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_252.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_252.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_253.json", - "@type": "sc:Canvas", - "label": "Bm 253", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_253.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_253.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_253.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_254.json", - "@type": "sc:Canvas", - "label": "Bm 254", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_254.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_254.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_254.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_255.json", - "@type": "sc:Canvas", - "label": "Bm 255", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_255.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_255.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_255.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_256.json", - "@type": "sc:Canvas", - "label": "Bm 256", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_256.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_256.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_256.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_257.json", - "@type": "sc:Canvas", - "label": "Bm 257", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_257.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_257.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_257.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_258.json", - "@type": "sc:Canvas", - "label": "Bm 258", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_258.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_258.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_258.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_259.json", - "@type": "sc:Canvas", - "label": "Bm 259", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_259.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_259.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_259.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_260.json", - "@type": "sc:Canvas", - "label": "Bm 260", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_260.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_260.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_260.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_261.json", - "@type": "sc:Canvas", - "label": "Bm 261", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_261.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_261.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_261.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_262.json", - "@type": "sc:Canvas", - "label": "Bm 262", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_262.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_262.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_262.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_263.json", - "@type": "sc:Canvas", - "label": "Bm 263", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_263.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_263.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_263.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_264.json", - "@type": "sc:Canvas", - "label": "Bm 264", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_264.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_264.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_264.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_265.json", - "@type": "sc:Canvas", - "label": "Bm 265", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_265.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_265.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_265.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_266.json", - "@type": "sc:Canvas", - "label": "Bm 266", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_266.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_266.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_266.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_267.json", - "@type": "sc:Canvas", - "label": "Bm 267", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_267.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_267.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_267.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_268.json", - "@type": "sc:Canvas", - "label": "Bm 268", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_268.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_268.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_268.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_269.json", - "@type": "sc:Canvas", - "label": "Bm 269", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_269.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_269.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_269.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_270.json", - "@type": "sc:Canvas", - "label": "Bm 270", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_270.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_270.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_270.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_271.json", - "@type": "sc:Canvas", - "label": "Bm 271", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_271.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_271.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_271.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_272.json", - "@type": "sc:Canvas", - "label": "Bm 272", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_272.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_272.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_272.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_273.json", - "@type": "sc:Canvas", - "label": "Bm 273", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_273.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_273.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_273.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_274.json", - "@type": "sc:Canvas", - "label": "Bm 274", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_274.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_274.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_274.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_275.json", - "@type": "sc:Canvas", - "label": "Bm 275", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_275.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_275.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_275.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_276.json", - "@type": "sc:Canvas", - "label": "Bm 276", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_276.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_276.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_276.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_277.json", - "@type": "sc:Canvas", - "label": "Bm 277", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_277.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_277.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_277.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_278.json", - "@type": "sc:Canvas", - "label": "Bm 278", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_278.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_278.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_278.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_279.json", - "@type": "sc:Canvas", - "label": "Bm 279", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_279.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_279.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_279.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_280.json", - "@type": "sc:Canvas", - "label": "Bm 280", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_280.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_280.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_280.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_281.json", - "@type": "sc:Canvas", - "label": "Bm 281", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_281.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_281.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_281.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_282.json", - "@type": "sc:Canvas", - "label": "Bm 282", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_282.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_282.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_282.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_283.json", - "@type": "sc:Canvas", - "label": "Bm 283", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_283.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_283.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_283.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_284.json", - "@type": "sc:Canvas", - "label": "Bm 284", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_284.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_284.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_284.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_285.json", - "@type": "sc:Canvas", - "label": "Bm 285", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_285.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_285.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_285.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_286.json", - "@type": "sc:Canvas", - "label": "Bm 286", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_286.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_286.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_286.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_287.json", - "@type": "sc:Canvas", - "label": "Bm 287", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_287.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_287.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_287.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_288.json", - "@type": "sc:Canvas", - "label": "Bm 288", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_288.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_288.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_288.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_289.json", - "@type": "sc:Canvas", - "label": "Bm 289", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_289.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_289.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_289.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_290.json", - "@type": "sc:Canvas", - "label": "Bm 290", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_290.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_290.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_290.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_291.json", - "@type": "sc:Canvas", - "label": "Bm 291", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_291.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_291.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_291.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_292.json", - "@type": "sc:Canvas", - "label": "Bm 292", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_292.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_292.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_292.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_293.json", - "@type": "sc:Canvas", - "label": "Bm 293", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_293.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_293.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_293.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_294.json", - "@type": "sc:Canvas", - "label": "Bm 294", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_294.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_294.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_294.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_295.json", - "@type": "sc:Canvas", - "label": "Bm 295", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_295.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_295.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_295.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_296.json", - "@type": "sc:Canvas", - "label": "Bm 296", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_296.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_296.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_296.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_297.json", - "@type": "sc:Canvas", - "label": "Bm 297", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_297.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_297.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_297.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_298.json", - "@type": "sc:Canvas", - "label": "Bm 298", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_298.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_298.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_298.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_299.json", - "@type": "sc:Canvas", - "label": "Bm 299", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_299.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_299.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_299.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_300.json", - "@type": "sc:Canvas", - "label": "Bm 300", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_300.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_300.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_300.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_301.json", - "@type": "sc:Canvas", - "label": "Bm 301", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_301.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_301.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_301.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_302.json", - "@type": "sc:Canvas", - "label": "Bm 302", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_302.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_302.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_302.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_303.json", - "@type": "sc:Canvas", - "label": "Bm 303", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_303.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_303.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_303.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_304.json", - "@type": "sc:Canvas", - "label": "Bm 304", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_304.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_304.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_304.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_305.json", - "@type": "sc:Canvas", - "label": "Bm 305", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_305.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_305.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_305.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_306.json", - "@type": "sc:Canvas", - "label": "Bm 306", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_306.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_306.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_306.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_307.json", - "@type": "sc:Canvas", - "label": "Bm 307", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_307.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_307.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_307.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_308.json", - "@type": "sc:Canvas", - "label": "Bm 308", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_308.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_308.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_308.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_309.json", - "@type": "sc:Canvas", - "label": "Bm 309", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_309.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_309.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_309.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_310.json", - "@type": "sc:Canvas", - "label": "Bm 310", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_310.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_310.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_310.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_311.json", - "@type": "sc:Canvas", - "label": "Bm 311", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_311.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_311.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_311.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_312.json", - "@type": "sc:Canvas", - "label": "Bm 312", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_312.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_312.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_312.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_313.json", - "@type": "sc:Canvas", - "label": "Bm 313", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_313.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_313.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_313.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_314.json", - "@type": "sc:Canvas", - "label": "Bm 314", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_314.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_314.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_314.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_315.json", - "@type": "sc:Canvas", - "label": "Bm 315", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_315.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_315.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_315.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_316.json", - "@type": "sc:Canvas", - "label": "Bm 316", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_316.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_316.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_316.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_317.json", - "@type": "sc:Canvas", - "label": "Bm 317", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_317.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_317.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_317.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_318.json", - "@type": "sc:Canvas", - "label": "Bm 318", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_318.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_318.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_318.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_319.json", - "@type": "sc:Canvas", - "label": "Bm 319", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_319.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_319.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_319.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_320.json", - "@type": "sc:Canvas", - "label": "Bm 320", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_320.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_320.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_320.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_321.json", - "@type": "sc:Canvas", - "label": "Bm 321", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_321.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_321.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_321.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_322.json", - "@type": "sc:Canvas", - "label": "Bm 322", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_322.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_322.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_322.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_323.json", - "@type": "sc:Canvas", - "label": "Bm 323", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_323.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_323.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_323.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_324.json", - "@type": "sc:Canvas", - "label": "Bm 324", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_324.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_324.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_324.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_325.json", - "@type": "sc:Canvas", - "label": "Bm 325", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_325.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_325.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_325.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_326.json", - "@type": "sc:Canvas", - "label": "Bm 326", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_326.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_326.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_326.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_327.json", - "@type": "sc:Canvas", - "label": "Bm 327", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_327.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_327.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_327.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_328.json", - "@type": "sc:Canvas", - "label": "Bm 328", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_328.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_328.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_328.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_329.json", - "@type": "sc:Canvas", - "label": "Bm 329", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_329.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_329.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_329.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_330.json", - "@type": "sc:Canvas", - "label": "Bm 330", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_330.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_330.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_330.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_331.json", - "@type": "sc:Canvas", - "label": "Bm 331", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_331.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_331.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_331.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_332.json", - "@type": "sc:Canvas", - "label": "Bm 332", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_332.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_332.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_332.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_333.json", - "@type": "sc:Canvas", - "label": "Bm 333", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_333.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_333.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_333.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_334.json", - "@type": "sc:Canvas", - "label": "Bm 334", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_334.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_334.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_334.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_335.json", - "@type": "sc:Canvas", - "label": "Bm 335", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_335.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_335.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_335.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_336.json", - "@type": "sc:Canvas", - "label": "Bm 336", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_336.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_336.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_336.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_337.json", - "@type": "sc:Canvas", - "label": "Bm 337", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_337.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_337.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_337.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_338.json", - "@type": "sc:Canvas", - "label": "Bm 338", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_338.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_338.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_338.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_339.json", - "@type": "sc:Canvas", - "label": "Bm 339", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_339.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_339.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_339.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_340.json", - "@type": "sc:Canvas", - "label": "Bm 340", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_340.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_340.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_340.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_341.json", - "@type": "sc:Canvas", - "label": "Bm 341", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_341.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_341.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_341.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_342.json", - "@type": "sc:Canvas", - "label": "Bm 342", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_342.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_342.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_342.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_343.json", - "@type": "sc:Canvas", - "label": "Bm 343", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_343.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_343.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_343.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_344.json", - "@type": "sc:Canvas", - "label": "Bm 344", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_344.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_344.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_344.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_345.json", - "@type": "sc:Canvas", - "label": "Bm 345", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_345.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_345.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_345.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_346.json", - "@type": "sc:Canvas", - "label": "Bm 346", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_346.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_346.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_346.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_347.json", - "@type": "sc:Canvas", - "label": "Bm 347", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_347.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_347.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_347.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_348.json", - "@type": "sc:Canvas", - "label": "Bm 348", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_348.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_348.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_348.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_349.json", - "@type": "sc:Canvas", - "label": "Bm 349", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_349.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_349.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_349.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_350.json", - "@type": "sc:Canvas", - "label": "Bm 350", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_350.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_350.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_350.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_351.json", - "@type": "sc:Canvas", - "label": "Bm 351", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_351.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_351.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_351.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_352.json", - "@type": "sc:Canvas", - "label": "Bm 352", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_352.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_352.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_352.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_353.json", - "@type": "sc:Canvas", - "label": "Bm 353", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_353.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_353.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_353.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_354.json", - "@type": "sc:Canvas", - "label": "Bm 354", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_354.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_354.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_354.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_355.json", - "@type": "sc:Canvas", - "label": "Bm 355", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_355.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_355.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_355.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_356.json", - "@type": "sc:Canvas", - "label": "Bm 356", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_356.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_356.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_356.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_357.json", - "@type": "sc:Canvas", - "label": "Bm 357", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_357.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_357.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_357.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_358.json", - "@type": "sc:Canvas", - "label": "Bm 358", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_358.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_358.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_358.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_359.json", - "@type": "sc:Canvas", - "label": "Bm 359", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_359.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_359.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_359.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_360.json", - "@type": "sc:Canvas", - "label": "Bm 360", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_360.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_360.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_360.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_361.json", - "@type": "sc:Canvas", - "label": "Bm 361", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_361.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_361.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_361.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_362.json", - "@type": "sc:Canvas", - "label": "Bm 362", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_362.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_362.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_362.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_363.json", - "@type": "sc:Canvas", - "label": "Bm 363", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_363.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_363.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_363.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_364.json", - "@type": "sc:Canvas", - "label": "Bm 364", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_364.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_364.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_364.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_365.json", - "@type": "sc:Canvas", - "label": "Bm 365", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_365.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_365.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_365.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_366.json", - "@type": "sc:Canvas", - "label": "Bm 366", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_366.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_366.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_366.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_367.json", - "@type": "sc:Canvas", - "label": "Bm 367", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_367.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_367.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_367.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_368.json", - "@type": "sc:Canvas", - "label": "Bm 368", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_368.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_368.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_368.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_369.json", - "@type": "sc:Canvas", - "label": "Bm 369", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_369.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_369.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_369.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_370.json", - "@type": "sc:Canvas", - "label": "Bm 370", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_370.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_370.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_370.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_371.json", - "@type": "sc:Canvas", - "label": "Bm 371", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_371.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_371.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_371.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_372.json", - "@type": "sc:Canvas", - "label": "Bm 372", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_372.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_372.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_372.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_373.json", - "@type": "sc:Canvas", - "label": "Bm 373", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_373.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_373.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_373.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_374.json", - "@type": "sc:Canvas", - "label": "Bm 374", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_374.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_374.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_374.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_375.json", - "@type": "sc:Canvas", - "label": "Bm 375", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_375.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_375.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_375.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_376.json", - "@type": "sc:Canvas", - "label": "Bm 376", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_376.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_376.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_376.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_377.json", - "@type": "sc:Canvas", - "label": "Bm 377", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_377.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_377.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_377.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_378.json", - "@type": "sc:Canvas", - "label": "Bm 378", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_378.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_378.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_378.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_379.json", - "@type": "sc:Canvas", - "label": "Bm 379", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_379.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_379.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_379.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_380.json", - "@type": "sc:Canvas", - "label": "Bm 380", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_380.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_380.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_380.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_381.json", - "@type": "sc:Canvas", - "label": "Bm 381", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_381.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_381.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_381.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_382.json", - "@type": "sc:Canvas", - "label": "Bm 382", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_382.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_382.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_382.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_383.json", - "@type": "sc:Canvas", - "label": "Bm 383", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_383.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_383.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_383.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_384.json", - "@type": "sc:Canvas", - "label": "Bm 384", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_384.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_384.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_384.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_385.json", - "@type": "sc:Canvas", - "label": "Bm 385", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_385.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_385.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_385.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_386.json", - "@type": "sc:Canvas", - "label": "Bm 386", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_386.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_386.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_386.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_388.json", - "@type": "sc:Canvas", - "label": "Bm 388", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_388.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_388.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_388.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_389.json", - "@type": "sc:Canvas", - "label": "Bm 389", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_389.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_389.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_389.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_390.json", - "@type": "sc:Canvas", - "label": "Bm 390", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_390.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_390.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_390.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_391.json", - "@type": "sc:Canvas", - "label": "Bm 391", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_391.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_391.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_391.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_392.json", - "@type": "sc:Canvas", - "label": "Bm 392", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_392.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_392.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_392.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_393.json", - "@type": "sc:Canvas", - "label": "Bm 393", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_393.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_393.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_393.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_394.json", - "@type": "sc:Canvas", - "label": "Bm 394", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_394.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_394.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_394.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_395.json", - "@type": "sc:Canvas", - "label": "Bm 395", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_395.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_395.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_395.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_396.json", - "@type": "sc:Canvas", - "label": "Bm 396", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_396.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_396.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_396.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_397.json", - "@type": "sc:Canvas", - "label": "Bm 397", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_397.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_397.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_397.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_398.json", - "@type": "sc:Canvas", - "label": "Bm 398", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_398.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_398.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_398.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_399.json", - "@type": "sc:Canvas", - "label": "Bm 399", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_399.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_399.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_399.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_400.json", - "@type": "sc:Canvas", - "label": "Bm 400", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_400.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_400.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_400.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_401.json", - "@type": "sc:Canvas", - "label": "Bm 401", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_401.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_401.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_401.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_402.json", - "@type": "sc:Canvas", - "label": "Bm 402", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_402.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_402.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_402.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_403.json", - "@type": "sc:Canvas", - "label": "Bm 403", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_403.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_403.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_403.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_404.json", - "@type": "sc:Canvas", - "label": "Bm 404", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_404.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_404.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_404.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_405.json", - "@type": "sc:Canvas", - "label": "Bm 405", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_405.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_405.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_405.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_406.json", - "@type": "sc:Canvas", - "label": "Bm 406", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_406.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_406.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_406.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_407.json", - "@type": "sc:Canvas", - "label": "Bm 407", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_407.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_407.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_407.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_408.json", - "@type": "sc:Canvas", - "label": "Bm 408", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_408.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_408.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_408.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_409.json", - "@type": "sc:Canvas", - "label": "Bm 409", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_409.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_409.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_409.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_410.json", - "@type": "sc:Canvas", - "label": "Bm 410", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_410.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_410.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_410.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_411.json", - "@type": "sc:Canvas", - "label": "Bm 411", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_411.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_411.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_411.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_412.json", - "@type": "sc:Canvas", - "label": "Bm 412", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_412.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_412.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_412.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_413.json", - "@type": "sc:Canvas", - "label": "Bm 413", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_413.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_413.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_413.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_414.json", - "@type": "sc:Canvas", - "label": "Bm 414", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_414.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_414.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_414.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_415.json", - "@type": "sc:Canvas", - "label": "Bm 415", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_415.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_415.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_415.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_416.json", - "@type": "sc:Canvas", - "label": "Bm 416", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_416.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_416.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_416.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_417.json", - "@type": "sc:Canvas", - "label": "Bm 417", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_417.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_417.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_417.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_418.json", - "@type": "sc:Canvas", - "label": "Bm 418", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_418.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_418.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_418.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_419.json", - "@type": "sc:Canvas", - "label": "Bm 419", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_419.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_419.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_419.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_420.json", - "@type": "sc:Canvas", - "label": "Bm 420", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_420.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_420.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_420.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_421.json", - "@type": "sc:Canvas", - "label": "Bm 421", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_421.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_421.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_421.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_422.json", - "@type": "sc:Canvas", - "label": "Bm 422", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_422.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_422.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_422.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_423.json", - "@type": "sc:Canvas", - "label": "Bm 423", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_423.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_423.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_423.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_424.json", - "@type": "sc:Canvas", - "label": "Bm 424", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_424.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_424.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_424.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_425.json", - "@type": "sc:Canvas", - "label": "Bm 425", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_425.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_425.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_425.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_426.json", - "@type": "sc:Canvas", - "label": "Bm 426", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_426.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_426.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_426.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_427.json", - "@type": "sc:Canvas", - "label": "Bm 427", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_427.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_427.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_427.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_428.json", - "@type": "sc:Canvas", - "label": "Bm 428", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_428.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_428.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_428.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_429.json", - "@type": "sc:Canvas", - "label": "Bm 429", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_429.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_429.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_429.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_430.json", - "@type": "sc:Canvas", - "label": "Bm 430", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_430.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_430.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_430.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_431.json", - "@type": "sc:Canvas", - "label": "Bm 431", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_431.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_431.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_431.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_432.json", - "@type": "sc:Canvas", - "label": "Bm 432", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_432.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_432.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_432.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_433.json", - "@type": "sc:Canvas", - "label": "Bm 433", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_433.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_433.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_433.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_434.json", - "@type": "sc:Canvas", - "label": "Bm 434", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_434.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_434.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_434.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_435.json", - "@type": "sc:Canvas", - "label": "Bm 435", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_435.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_435.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_435.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_436.json", - "@type": "sc:Canvas", - "label": "Bm 436", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_436.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_436.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_436.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_437.json", - "@type": "sc:Canvas", - "label": "Bm 437", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_437.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_437.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_437.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_438.json", - "@type": "sc:Canvas", - "label": "Bm 438", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_438.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_438.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_438.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_439.json", - "@type": "sc:Canvas", - "label": "Bm 439", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_439.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_439.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_439.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_440.json", - "@type": "sc:Canvas", - "label": "Bm 440", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_440.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_440.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_440.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_441.json", - "@type": "sc:Canvas", - "label": "Bm 441", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_441.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_441.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_441.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_442.json", - "@type": "sc:Canvas", - "label": "Bm 442", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_442.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_442.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_442.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_443.json", - "@type": "sc:Canvas", - "label": "Bm 443", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_443.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_443.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_443.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_444.json", - "@type": "sc:Canvas", - "label": "Bm 444", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_444.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_444.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_444.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_445.json", - "@type": "sc:Canvas", - "label": "Bm 445", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_445.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_445.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_445.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_446.json", - "@type": "sc:Canvas", - "label": "Bm 446", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_446.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_446.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_446.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_447.json", - "@type": "sc:Canvas", - "label": "Bm 447", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_447.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_447.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_447.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_448.json", - "@type": "sc:Canvas", - "label": "Bm 448", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_448.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_448.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_448.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_449.json", - "@type": "sc:Canvas", - "label": "Bm 449", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_449.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_449.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_449.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_450.json", - "@type": "sc:Canvas", - "label": "Bm 450", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_450.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_450.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_450.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_451.json", - "@type": "sc:Canvas", - "label": "Bm 451", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_451.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_451.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_451.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_452.json", - "@type": "sc:Canvas", - "label": "Bm 452", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_452.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_452.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_452.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_453.json", - "@type": "sc:Canvas", - "label": "Bm 453", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_453.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_453.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_453.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_454.json", - "@type": "sc:Canvas", - "label": "Bm 454", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_454.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_454.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_454.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_455.json", - "@type": "sc:Canvas", - "label": "Bm 455", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_455.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_455.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_455.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_456.json", - "@type": "sc:Canvas", - "label": "Bm 456", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_456.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_456.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_456.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_457.json", - "@type": "sc:Canvas", - "label": "Bm 457", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_457.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_457.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_457.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_458.json", - "@type": "sc:Canvas", - "label": "Bm 458", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_458.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_458.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_458.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_459.json", - "@type": "sc:Canvas", - "label": "Bm 459", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_459.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_459.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_459.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_460.json", - "@type": "sc:Canvas", - "label": "Bm 460", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_460.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_460.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_460.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_461.json", - "@type": "sc:Canvas", - "label": "Bm 461", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_461.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_461.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_461.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_462.json", - "@type": "sc:Canvas", - "label": "Bm 462", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_462.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_462.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_462.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_463.json", - "@type": "sc:Canvas", - "label": "Bm 463", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_463.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_463.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_463.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_464.json", - "@type": "sc:Canvas", - "label": "Bm 464", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_464.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_464.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_464.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_465.json", - "@type": "sc:Canvas", - "label": "Bm 465", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_465.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_465.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_465.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_466.json", - "@type": "sc:Canvas", - "label": "Bm 466", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_466.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_466.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_466.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_467.json", - "@type": "sc:Canvas", - "label": "Bm 467", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_467.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_467.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_467.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_468.json", - "@type": "sc:Canvas", - "label": "Bm 468", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_468.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_468.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_468.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_469.json", - "@type": "sc:Canvas", - "label": "Bm 469", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_469.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_469.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_469.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_470.json", - "@type": "sc:Canvas", - "label": "Bm 470", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_470.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_470.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_470.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_471.json", - "@type": "sc:Canvas", - "label": "Bm 471", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_471.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_471.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_471.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_472.json", - "@type": "sc:Canvas", - "label": "Bm 472", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_472.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_472.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_472.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_473.json", - "@type": "sc:Canvas", - "label": "Bm 473", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_473.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_473.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_473.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_474.json", - "@type": "sc:Canvas", - "label": "Bm 474", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_474.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_474.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_474.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_475.json", - "@type": "sc:Canvas", - "label": "Bm 475", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_475.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_475.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_475.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_476.json", - "@type": "sc:Canvas", - "label": "Bm 476", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_476.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_476.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_476.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_477.json", - "@type": "sc:Canvas", - "label": "Bm 477", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_477.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_477.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_477.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_478.json", - "@type": "sc:Canvas", - "label": "Bm 478", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_478.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_478.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_478.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_479.json", - "@type": "sc:Canvas", - "label": "Bm 479", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_479.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_479.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_479.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_480.json", - "@type": "sc:Canvas", - "label": "Bm 480", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_480.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_480.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_480.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_481.json", - "@type": "sc:Canvas", - "label": "Bm 481", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_481.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_481.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_481.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_482.json", - "@type": "sc:Canvas", - "label": "Bm 482", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_482.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_482.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_482.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_483.json", - "@type": "sc:Canvas", - "label": "Bm 483", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_483.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_483.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_483.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_484.json", - "@type": "sc:Canvas", - "label": "Bm 484", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_484.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_484.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_484.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_485.json", - "@type": "sc:Canvas", - "label": "Bm 485", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_485.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_485.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_485.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_486.json", - "@type": "sc:Canvas", - "label": "Bm 486", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_486.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_486.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_486.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_487.json", - "@type": "sc:Canvas", - "label": "Bm 487", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_487.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_487.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_487.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_488.json", - "@type": "sc:Canvas", - "label": "Bm 488", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_488.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_488.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_488.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_489.json", - "@type": "sc:Canvas", - "label": "Bm 489", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_489.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_489.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_489.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_490.json", - "@type": "sc:Canvas", - "label": "Bm 490", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_490.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_490.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_490.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_491.json", - "@type": "sc:Canvas", - "label": "Bm 491", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_491.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_491.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_491.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_492.json", - "@type": "sc:Canvas", - "label": "Bm 492", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_492.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_492.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_492.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_493.json", - "@type": "sc:Canvas", - "label": "Bm 493", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_493.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_493.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_493.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_494.json", - "@type": "sc:Canvas", - "label": "Bm 494", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_494.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_494.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_494.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_495.json", - "@type": "sc:Canvas", - "label": "Bm 495", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_495.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_495.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_495.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_496.json", - "@type": "sc:Canvas", - "label": "Bm 496", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_496.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_496.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_496.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_497.json", - "@type": "sc:Canvas", - "label": "Bm 497", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_497.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_497.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_497.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_498.json", - "@type": "sc:Canvas", - "label": "Bm 498", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_498.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_498.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_498.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_499.json", - "@type": "sc:Canvas", - "label": "Bm 499", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_499.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_499.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_499.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_500.json", - "@type": "sc:Canvas", - "label": "Bm 500", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_500.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_500.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_500.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_501.json", - "@type": "sc:Canvas", - "label": "Bm 501", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_501.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_501.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_501.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_502.json", - "@type": "sc:Canvas", - "label": "Bm 502", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_502.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_502.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_502.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_503.json", - "@type": "sc:Canvas", - "label": "Bm 503", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_503.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_503.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_503.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_504.json", - "@type": "sc:Canvas", - "label": "Bm 504", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_504.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_504.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_504.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_505.json", - "@type": "sc:Canvas", - "label": "Bm 505", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_505.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_505.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_505.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_506.json", - "@type": "sc:Canvas", - "label": "Bm 506", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_506.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_506.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_506.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_507.json", - "@type": "sc:Canvas", - "label": "Bm 507", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_507.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_507.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_507.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_508.json", - "@type": "sc:Canvas", - "label": "Bm 508", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_508.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_508.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_508.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_509.json", - "@type": "sc:Canvas", - "label": "Bm 509", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_509.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_509.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_509.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_510.json", - "@type": "sc:Canvas", - "label": "Bm 510", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_510.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_510.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_510.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_511.json", - "@type": "sc:Canvas", - "label": "Bm 511", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_511.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_511.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_511.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_512.json", - "@type": "sc:Canvas", - "label": "Bm 512", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_512.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_512.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_512.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_513.json", - "@type": "sc:Canvas", - "label": "Bm 513", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_513.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_513.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_513.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_514.json", - "@type": "sc:Canvas", - "label": "Bm 514", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_514.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_514.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_514.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_515.json", - "@type": "sc:Canvas", - "label": "Bm 515", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_515.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_515.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_515.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_516.json", - "@type": "sc:Canvas", - "label": "Bm 516", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_516.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_516.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_516.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_517.json", - "@type": "sc:Canvas", - "label": "Bm 517", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_517.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_517.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_517.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_518.json", - "@type": "sc:Canvas", - "label": "Bm 518", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_518.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_518.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_518.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_519.json", - "@type": "sc:Canvas", - "label": "Bm 519", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_519.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_519.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_519.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_520.json", - "@type": "sc:Canvas", - "label": "Bm 520", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_520.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_520.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_520.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_521.json", - "@type": "sc:Canvas", - "label": "Bm 521", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_521.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_521.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_521.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_522.json", - "@type": "sc:Canvas", - "label": "Bm 522", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_522.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_522.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_522.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_523.json", - "@type": "sc:Canvas", - "label": "Bm 523", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_523.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_523.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_523.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_524.json", - "@type": "sc:Canvas", - "label": "Bm 524", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_524.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_524.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_524.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_525.json", - "@type": "sc:Canvas", - "label": "Bm 525", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_525.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_525.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_525.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_526.json", - "@type": "sc:Canvas", - "label": "Bm 526", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_526.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_526.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_526.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_527.json", - "@type": "sc:Canvas", - "label": "Bm 527", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_527.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_527.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_527.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_528.json", - "@type": "sc:Canvas", - "label": "Bm 528", - "height": 4089, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_528.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4089, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_528.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_528.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_529.json", - "@type": "sc:Canvas", - "label": "Bm 529", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_529.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_529.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_529.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_542.json", - "@type": "sc:Canvas", - "label": "Bm 542", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_542.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_542.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_542.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_543.json", - "@type": "sc:Canvas", - "label": "Bm 543", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_543.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_543.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_543.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_544.json", - "@type": "sc:Canvas", - "label": "Bm 544", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_544.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_544.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_544.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_545.json", - "@type": "sc:Canvas", - "label": "Bm 545", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_545.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_545.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_545.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_546.json", - "@type": "sc:Canvas", - "label": "Bm 546", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_546.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_546.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_546.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_547.json", - "@type": "sc:Canvas", - "label": "Bm 547", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_547.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_547.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_547.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_548.json", - "@type": "sc:Canvas", - "label": "Bm 548", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_548.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_548.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_548.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_549.json", - "@type": "sc:Canvas", - "label": "Bm 549", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_549.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_549.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_549.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_550.json", - "@type": "sc:Canvas", - "label": "Bm 550", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_550.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_550.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_550.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_551.json", - "@type": "sc:Canvas", - "label": "Bm 551", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_551.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_551.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_551.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_552.json", - "@type": "sc:Canvas", - "label": "Bm 552", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_552.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_552.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_552.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_553.json", - "@type": "sc:Canvas", - "label": "Bm 553", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_553.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_553.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_553.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_554.json", - "@type": "sc:Canvas", - "label": "Bm 554", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_554.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_554.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_554.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_555.json", - "@type": "sc:Canvas", - "label": "Bm 555", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_555.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_555.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_555.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_556.json", - "@type": "sc:Canvas", - "label": "Bm 556", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_556.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_556.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_556.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_557.json", - "@type": "sc:Canvas", - "label": "Bm 557", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_557.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_557.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_557.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_558.json", - "@type": "sc:Canvas", - "label": "Bm 558", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_558.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_558.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_558.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_559.json", - "@type": "sc:Canvas", - "label": "Bm 559", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_559.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_559.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_559.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_560.json", - "@type": "sc:Canvas", - "label": "Bm 560", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_560.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_560.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_560.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_561.json", - "@type": "sc:Canvas", - "label": "Bm 561", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_561.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_561.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_561.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_562.json", - "@type": "sc:Canvas", - "label": "Bm 562", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_562.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_562.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_562.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_563.json", - "@type": "sc:Canvas", - "label": "Bm 563", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_563.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_563.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_563.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_564.json", - "@type": "sc:Canvas", - "label": "Bm 564", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_564.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_564.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_564.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_565.json", - "@type": "sc:Canvas", - "label": "Bm 565", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_565.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_565.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_565.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_566.json", - "@type": "sc:Canvas", - "label": "Bm 566", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_566.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_566.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_566.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_567.json", - "@type": "sc:Canvas", - "label": "Bm 567", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_567.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_567.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_567.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_568.json", - "@type": "sc:Canvas", - "label": "Bm 568", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_568.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_568.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_568.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_569.json", - "@type": "sc:Canvas", - "label": "Bm 569", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_569.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_569.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_569.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_570.json", - "@type": "sc:Canvas", - "label": "Bm 570", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_570.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_570.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_570.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_571.json", - "@type": "sc:Canvas", - "label": "Bm 571", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_571.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_571.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_571.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_572.json", - "@type": "sc:Canvas", - "label": "Bm 572", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_572.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_572.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_572.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_573.json", - "@type": "sc:Canvas", - "label": "Bm 573", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_573.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_573.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_573.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_574.json", - "@type": "sc:Canvas", - "label": "Bm 574", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_574.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_574.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_574.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_575.json", - "@type": "sc:Canvas", - "label": "Bm 575", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_575.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_575.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_575.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_576.json", - "@type": "sc:Canvas", - "label": "Bm 576", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_576.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_576.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_576.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_577.json", - "@type": "sc:Canvas", - "label": "Bm 577", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_577.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_577.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_577.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_578.json", - "@type": "sc:Canvas", - "label": "Bm 578", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_578.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_578.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_578.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_579.json", - "@type": "sc:Canvas", - "label": "Bm 579", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_579.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_579.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_579.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_580.json", - "@type": "sc:Canvas", - "label": "Bm 580", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_580.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_580.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_580.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_581.json", - "@type": "sc:Canvas", - "label": "Bm 581", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_581.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_581.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_581.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_582.json", - "@type": "sc:Canvas", - "label": "Bm 582", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_582.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_582.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_582.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_583.json", - "@type": "sc:Canvas", - "label": "Bm 583", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_583.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_583.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_583.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_584.json", - "@type": "sc:Canvas", - "label": "Bm 584", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_584.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_584.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_584.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_585.json", - "@type": "sc:Canvas", - "label": "Bm 585", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_585.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_585.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_585.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_586.json", - "@type": "sc:Canvas", - "label": "Bm 586", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_586.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_586.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_586.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_587.json", - "@type": "sc:Canvas", - "label": "Bm 587", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_587.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_587.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_587.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_588.json", - "@type": "sc:Canvas", - "label": "Bm 588", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_588.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_588.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_588.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_589.json", - "@type": "sc:Canvas", - "label": "Bm 589", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_589.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_589.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_589.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_590.json", - "@type": "sc:Canvas", - "label": "Bm 590", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_590.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_590.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_590.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_591.json", - "@type": "sc:Canvas", - "label": "Bm 591", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_591.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_591.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_591.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_592.json", - "@type": "sc:Canvas", - "label": "Bm 592", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_592.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_592.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_592.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_593.json", - "@type": "sc:Canvas", - "label": "Bm 593", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_593.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_593.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_593.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_594.json", - "@type": "sc:Canvas", - "label": "Bm 594", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_594.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_594.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_594.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_595.json", - "@type": "sc:Canvas", - "label": "Bm 595", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_595.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_595.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_595.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_596.json", - "@type": "sc:Canvas", - "label": "Bm 596", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_596.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_596.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_596.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_597.json", - "@type": "sc:Canvas", - "label": "Bm 597", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_597.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_597.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_597.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_598.json", - "@type": "sc:Canvas", - "label": "Bm 598", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_598.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_598.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_598.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_599.json", - "@type": "sc:Canvas", - "label": "Bm 599", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_599.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_599.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_599.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_600.json", - "@type": "sc:Canvas", - "label": "Bm 600", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_600.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_600.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_600.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_601.json", - "@type": "sc:Canvas", - "label": "Bm 601", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_601.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_601.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_601.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_602.json", - "@type": "sc:Canvas", - "label": "Bm 602", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_602.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_602.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_602.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_603.json", - "@type": "sc:Canvas", - "label": "Bm 603", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_603.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_603.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_603.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_604.json", - "@type": "sc:Canvas", - "label": "Bm 604", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_604.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_604.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_604.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_605.json", - "@type": "sc:Canvas", - "label": "Bm 605", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_605.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_605.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_605.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_606.json", - "@type": "sc:Canvas", - "label": "Bm 606", - "height": 4091, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_606.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4091, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_606.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_606.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_607.json", - "@type": "sc:Canvas", - "label": "Bm 607", - "height": 4090, - "width": 2490, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_607.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4090, - "width": 2490, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_607.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_607.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_608.json", - "@type": "sc:Canvas", - "label": "Bm 608", - "height": 4225, - "width": 2620, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_608.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4225, - "width": 2620, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_608.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_608.json" - } - ] - }, - { - "@id": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_609.json", - "@type": "sc:Canvas", - "label": "Bm 609", - "height": 4446, - "width": 2844, - "images": [ - { - "@type": "oa:Annotation", - "motivation": "sc:painting", - "resource": { - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_609.tif/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 4446, - "width": 2844, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "https://images.simssa.ca/iiif/image/beromunster/bm_609.tif", - "profile": "http://iiif.io/api/image/2/level2.json" - } - }, - "on": "https://images.simssa.ca/iiif/image/beromunster/canvas/bm_609.json" - } - ] - } - ] - } - ] -} diff --git a/demo/beromunster.json b/demo/beromunster.json deleted file mode 100644 index dce618be..00000000 --- a/demo/beromunster.json +++ /dev/null @@ -1 +0,0 @@ -{"item_title":"Beromunster","dims":{"a_wid":[155.93025210084,311.86050420168,623.72100840336,1247.4420168067,2494.8840336134],"a_hei":[255.72258403361,511.44516806723,1022.8903361345,2045.7806722689,4091.5613445378],"max_w":[298.8125,597.625,1195.25,2390.5,4781],"max_h":[277.8125,555.625,1111.25,2222.5,4445],"max_ratio":1.6429718875502,"min_ratio":0.91570801087639,"t_hei":[152154.9375,304309.875,608619.75,1217239.5,2434479],"t_wid":[92778.5,185557,371114,742228,1484456]},"max_zoom":4,"pgs":[{"d":[{"c":1,"r":2,"h":277.8125,"w":177.875},{"c":2,"r":3,"h":555.625,"w":355.75},{"c":3,"r":5,"h":1111.25,"w":711.5},{"c":6,"r":9,"h":2222.5,"w":1423},{"c":12,"r":18,"h":4445,"w":2846}],"m":5,"f":"bm_001.tif"},{"d":[{"c":1,"r":2,"h":264,"w":163.6875},{"c":2,"r":3,"h":528,"w":327.375},{"c":3,"r":5,"h":1056,"w":654.75},{"c":6,"r":9,"h":2112,"w":1309.5},{"c":11,"r":17,"h":4224,"w":2619}],"m":5,"f":"bm_002.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_003.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_004.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_005.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_006.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_007.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_008.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_009.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_010.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_011.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_012.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_013.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_014.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_015.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_016.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_017.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_018.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_019.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_020.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_021.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_022.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_023.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_024.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_025.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_026.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_027.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_028.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_029.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_030.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_031.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_032.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_033.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_034.tif"},{"d":[{"c":2,"r":2,"h":273.625,"w":298.8125},{"c":3,"r":3,"h":547.25,"w":597.625},{"c":5,"r":5,"h":1094.5,"w":1195.25},{"c":10,"r":9,"h":2189,"w":2390.5},{"c":19,"r":18,"h":4378,"w":4781}],"m":5,"f":"bm_035.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_036.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_037.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_038.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_039.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_040.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_041.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_042.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_043.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_044.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_045.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_046.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_047.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_048.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_049.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_050.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_051.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_052.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_053.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_054.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_055.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_056.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_057.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_058.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_059.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_060.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_061.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_062.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_063.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_064.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_065.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_066.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_067.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_068.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_069.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_070.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_071.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_072.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_073.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_074.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_075.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_076.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_077.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_078.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_079.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_080.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_081.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_082.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_083.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_084.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_085.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_086.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_087.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_088.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_089.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_090.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_091.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_092.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_093.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_094.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_095.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_096.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_097.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_098.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_099.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_100.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_101.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_102.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_103.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_104.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_105.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_106.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_107.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_108.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_109.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_110.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_111.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_112.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_113.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_114.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_115.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_116.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_117.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_118.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_119.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_120.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_121.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_122.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_123.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_124.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_125.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_126.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_127.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_128.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_129.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_130.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_131.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_132.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_133.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_134.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_135.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_136.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_137.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_138.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_139.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_140.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_141.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_142.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_143.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_144.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_145.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_146.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_147.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_148.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_149.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_150.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_151.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_152.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_153.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_154.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_155.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_156.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_157.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_158.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_159.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_160.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_161.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_162.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_163.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_164.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_165.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_166.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_167.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_168.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_169.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_170.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_171.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_172.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_173.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_174.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_175.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_176.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_177.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_178.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_179.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_180.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_181.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_182.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_183.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_184.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_185.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_186.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_187.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_188.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_189.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_190.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_191.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_192.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_193.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_194.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_195.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_196.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_197.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_198.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_199.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_200.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_201.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_202.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_203.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_204.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_205.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_206.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_207.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_208.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_209.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_210.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_211.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_212.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_213.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_214.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_215.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_216.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_217.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_218.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_219.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_220.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_221.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_222.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_223.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_224.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_225.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_226.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_227.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_228.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_229.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_230.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_231.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_232.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_233.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_234.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_235.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_236.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_237.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_238.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_239.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_240.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_241.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_242.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_243.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_244.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_245.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_246.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_247.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_248.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_249.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_250.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_251.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_252.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_253.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_254.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_255.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_256.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_257.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_258.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_259.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_260.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_261.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_262.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_263.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_264.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_265.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_266.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_267.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_268.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_269.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_270.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_271.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_272.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_273.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_274.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_275.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_276.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_277.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_278.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_279.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_280.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_281.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_282.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_283.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_284.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_285.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_286.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_287.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_288.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_289.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_290.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_291.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_292.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_293.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_294.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_295.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_296.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_297.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_298.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_299.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_300.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_301.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_302.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_303.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_304.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_305.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_306.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_307.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_308.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_309.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_310.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_311.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_312.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_313.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_314.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_315.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_316.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_317.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_318.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_319.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_320.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_321.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_322.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_323.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_324.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_325.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_326.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_327.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_328.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_329.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_330.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_331.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_332.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_333.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_334.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_335.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_336.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_337.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_338.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_339.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_340.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_341.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_342.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_343.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_344.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_345.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_346.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_347.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_348.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_349.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_350.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_351.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_352.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_353.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_354.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_355.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_356.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_357.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_358.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_359.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_360.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_361.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_362.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_363.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_364.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_365.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_366.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_367.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_368.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_369.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_370.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_371.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_372.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_373.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_374.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_375.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_376.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_377.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_378.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_379.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_380.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_381.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_382.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_383.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_384.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_385.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_386.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_388.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_389.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_390.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_391.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_392.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_393.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_394.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_395.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_396.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_397.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_398.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_399.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_400.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_401.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_402.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_403.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_404.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_405.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_406.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_407.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_408.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_409.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_410.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_411.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_412.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_413.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_414.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_415.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_416.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_417.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_418.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_419.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_420.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_421.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_422.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_423.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_424.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_425.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_426.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_427.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_428.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_429.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_430.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_431.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_432.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_433.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_434.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_435.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_436.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_437.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_438.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_439.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_440.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_441.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_442.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_443.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_444.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_445.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_446.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_447.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_448.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_449.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_450.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_451.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_452.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_453.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_454.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_455.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_456.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_457.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_458.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_459.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_460.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_461.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_462.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_463.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_464.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_465.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_466.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_467.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_468.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_469.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_470.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_471.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_472.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_473.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_474.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_475.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_476.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_477.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_478.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_479.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_480.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_481.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_482.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_483.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_484.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_485.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_486.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_487.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_488.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_489.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_490.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_491.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_492.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_493.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_494.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_495.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_496.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_497.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_498.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_499.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_500.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_501.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_502.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_503.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_504.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_505.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_506.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_507.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_508.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_509.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_510.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_511.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_512.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_513.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_514.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_515.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_516.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_517.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_518.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_519.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_520.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_521.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_522.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_523.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_524.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_525.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_526.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_527.tif"},{"d":[{"c":1,"r":1,"h":255.5625,"w":155.625},{"c":2,"r":2,"h":511.125,"w":311.25},{"c":3,"r":4,"h":1022.25,"w":622.5},{"c":5,"r":8,"h":2044.5,"w":1245},{"c":10,"r":16,"h":4089,"w":2490}],"m":4,"f":"bm_528.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_529.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_542.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_543.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_544.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_545.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_546.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_547.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_548.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_549.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_550.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_551.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_552.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_553.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_554.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_555.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_556.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_557.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_558.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_559.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_560.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_561.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_562.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_563.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_564.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_565.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_566.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_567.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_568.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_569.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_570.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_571.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_572.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_573.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_574.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_575.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_576.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_577.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_578.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_579.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_580.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_581.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_582.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_583.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_584.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_585.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_586.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_587.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_588.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_589.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_590.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_591.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_592.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_593.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_594.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_595.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_596.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_597.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_598.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_599.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_600.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_601.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_602.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_603.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_604.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_605.tif"},{"d":[{"c":1,"r":1,"h":255.6875,"w":155.625},{"c":2,"r":2,"h":511.375,"w":311.25},{"c":3,"r":4,"h":1022.75,"w":622.5},{"c":5,"r":8,"h":2045.5,"w":1245},{"c":10,"r":16,"h":4091,"w":2490}],"m":4,"f":"bm_606.tif"},{"d":[{"c":1,"r":1,"h":255.625,"w":155.625},{"c":2,"r":2,"h":511.25,"w":311.25},{"c":3,"r":4,"h":1022.5,"w":622.5},{"c":5,"r":8,"h":2045,"w":1245},{"c":10,"r":16,"h":4090,"w":2490}],"m":4,"f":"bm_607.tif"},{"d":[{"c":1,"r":2,"h":264.0625,"w":163.75},{"c":2,"r":3,"h":528.125,"w":327.5},{"c":3,"r":5,"h":1056.25,"w":655},{"c":6,"r":9,"h":2112.5,"w":1310},{"c":11,"r":17,"h":4225,"w":2620}],"m":5,"f":"bm_608.tif"}]} \ No newline at end of file diff --git a/demo/diva/autoscroll.html b/demo/diva/autoscroll.html deleted file mode 100644 index 4a3a8500..00000000 --- a/demo/diva/autoscroll.html +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - Diva.js Demo Page - - - - - - - - -
- - diff --git a/demo/diva/demo.css b/demo/diva/demo.css deleted file mode 100644 index db182030..00000000 --- a/demo/diva/demo.css +++ /dev/null @@ -1,19 +0,0 @@ -body { - font-family: 'Helvetica Neue', 'Helvetica', Arial, Verdana, sans-serif; - -webkit-font-smoothing: antialiased; - box-sizing: border-box; - padding: 8px; - display: flex; - flex-direction: column; -} - -body, html { - height:100%; - margin: 0; -} - -#diva-wrapper { - display: flex; - flex-grow: 1; - height: 0; -} diff --git a/demo/diva/documentFragmentTest.html b/demo/diva/documentFragmentTest.html deleted file mode 100644 index 566549bd..00000000 --- a/demo/diva/documentFragmentTest.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - - Title - - - - - \ No newline at end of file diff --git a/demo/diva/highlight.html b/demo/diva/highlight.html deleted file mode 100644 index 6b2f4c1d..00000000 --- a/demo/diva/highlight.html +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - Diva.js Demo Page - - - - - - - - - -

Highlight Random Regions on all Pages

-
- - diff --git a/demo/diva/horizontal_scrolling.html b/demo/diva/horizontal_scrolling.html deleted file mode 100644 index c74f62e9..00000000 --- a/demo/diva/horizontal_scrolling.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - Diva.js Demo Page - - - - - - - - - -
- - diff --git a/demo/diva/iiif-external.html b/demo/diva/iiif-external.html deleted file mode 100644 index be8013db..00000000 --- a/demo/diva/iiif-external.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - Diva.js Demo Page - - - - - - - - - - -
- - diff --git a/demo/diva/iiif-highlight.html b/demo/diva/iiif-highlight.html deleted file mode 100644 index 3ccc3c5c..00000000 --- a/demo/diva/iiif-highlight.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - Diva.js Demo Page - - - - - - - - -
- - \ No newline at end of file diff --git a/demo/diva/iiif-openings.html b/demo/diva/iiif-openings.html deleted file mode 100644 index 6902b47c..00000000 --- a/demo/diva/iiif-openings.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - Diva.js Demo Page - - - - - - - - - -
- - diff --git a/demo/diva/pagealias.html b/demo/diva/pagealias.html deleted file mode 100644 index b2c0319e..00000000 --- a/demo/diva/pagealias.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - Diva.js Demo Page - - - - - - - - -
- - diff --git a/demo/diva/single.html b/demo/diva/single.html deleted file mode 100644 index e9b84b3e..00000000 --- a/demo/diva/single.html +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - Diva.js Demo Page - - - - - - - - -
- - diff --git a/demo/index.html b/demo/index.html deleted file mode 100644 index 0d39ab56..00000000 --- a/demo/index.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - Diva.js Demo Page - - - - - -

Diva.js Demo Page

- -

- Documentation
- GitHub repository -

- - diff --git a/demo/stgallen_390_paged.json b/demo/stgallen_390_paged.json deleted file mode 100644 index 8e4b2a42..00000000 --- a/demo/stgallen_390_paged.json +++ /dev/null @@ -1,6043 +0,0 @@ -{ - "@context": "http://iiif.io/api/presentation/2/context.json", - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/manifest.json", - "@type": "sc:Manifest", - "label": "St. Gallen, Stiftsbibliothek, Cod. Sang. 390", - "metadata": [ - { - "label": "Location", - "value": "St. Gallen" - }, - { - "label": "Date", - "value": [ - { - "@value": "um 990-1000", - "@language": "de" - }, - { - "@value": "about 990-1000", - "@language": "en" - }, - { - "@value": "vers 990-1000", - "@language": "fr" - }, - { - "@value": "verso il 990-1000", - "@language": "it" - } - ] - } - ], - "description": [ - { - "@value": "Winterteil des so genannten Hartker-Antiphonars: Gesänge der St. Galler Mönche während des Stundengebets, geschrieben und mit feinsten Neumen versehen vom St. Galler Mönch und Reklusen Hartker: Graphisches Meisterwerk in Schrift, Neumen und Initialzeichnung. Wichtigste aller mittelalterlicher Choralhandschriften mit vier herausragenden kolorierten Federzeichnungen ", - "@language": "de" - }, - { - "@value": "Winter volume of the so-called Hartker Antiphonary: Chants for the liturgy of the hours of the St. St. Gall monks, written and provided with finest neumes by the St. St. Gall monk Hartker. A masterpiece of script, neumes and illuminated initials. The most important choral manuscript, with four colored pen drawings of outstanding quality. ", - "@language": "en" - }, - { - "@value": "Section hivernale de l'Antiphonaire dit d'Hartker: chants des moines de Saint-Gall pour la liturgie des heures, copié et annoté de neumes par le moine et reclus Hartker de Saint-Gall. Chef-d'oeuvre graphique par l'écriture, les neumes et les initales enluminées. Le plus important de tous les manuscrits choraux du Moyen Age, avec quatre dessins à la plume colorés, de grande qualité. ", - "@language": "fr" - }, - { - "@value": "Sezione invernale del cosiddetto \"antifonario di Hartker\". Contiene canti per la liturgia delle ore dei monaci di San Gallo, trascritti e corredati di raffinati neumi da Hartker, monaco e recluso a San Gallo. Scrittura, neumi e iniziali miniate rappresentano un capolavoro dell'arte grafica. Il più importante corale medievale, con quattro disegni a penna in colori di qualità eccezionale. ", - "@language": "it" - } - ], - "license": "http://creativecommons.org/licenses/by-nc/4.0/", - "attribution": "e-codices - Virtual Manuscript Library of Switzerland", - "service": "http://www.e-codices.unifr.ch/en/search/", - "see_also": "http://www.e-codices.unifr.ch/en/list/one/csg/0390", - "within": "http://www.e-codices.unifr.ch/en/list/csg", - "viewingHint": "paged", - "sequences": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/sequence/Sequence-1324.json", - "@type": "sc:Sequence", - "label": [ - { - "@value": "Standardabfolge", - "@language": "de" - }, - { - "@value": "Normal Sequence", - "@language": "en" - }, - { - "@value": "Séquence normale", - "@language": "fr" - }, - { - "@value": "Sequenza normale", - "@language": "it" - } - ], - "canvases": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_e001.json", - "@type": "sc:Canvas", - "label": "bindingA", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_e001.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_e001.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_e001.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_e001.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_e005.json", - "@type": "sc:Canvas", - "label": "bindingE", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_e005.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_e005.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_e005.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_e005.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_0000_001.json", - "@type": "sc:Canvas", - "label": "V1", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_0000_001.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_0000_001.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_0000_001.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_0000_001.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_0000_002.json", - "@type": "sc:Canvas", - "label": "V2", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_0000_002.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_0000_002.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_0000_002.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_0000_002.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_0000_003.json", - "@type": "sc:Canvas", - "label": "V3", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_0000_003.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_0000_003.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_0000_003.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_0000_003.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_0000_004.json", - "@type": "sc:Canvas", - "label": "V4", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_0000_004.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_0000_004.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_0000_004.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_0000_004.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_001.json", - "@type": "sc:Canvas", - "label": "1", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_001.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_001.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_001.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_001.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_002.json", - "@type": "sc:Canvas", - "label": "2", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_002.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_002.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_002.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_002.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_003.json", - "@type": "sc:Canvas", - "label": "3", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_003.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_003.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_003.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_003.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_004.json", - "@type": "sc:Canvas", - "label": "4", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_004.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_004.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_004.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_004.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_005.json", - "@type": "sc:Canvas", - "label": "5", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_005.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_005.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_005.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_005.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_006.json", - "@type": "sc:Canvas", - "label": "6", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_006.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_006.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_006.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_006.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_007.json", - "@type": "sc:Canvas", - "label": "7", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_007.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_007.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_007.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_007.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_008.json", - "@type": "sc:Canvas", - "label": "8", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_008.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_008.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_008.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_008.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_009.json", - "@type": "sc:Canvas", - "label": "9", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_009.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_009.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_009.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_009.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ], - "otherContent": [ - { - "@id":"http://diva.simssa.ca/iiif/csg-0390_009/list.json", - "@type":"sc:AnnotationList" - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_010.json", - "@type": "sc:Canvas", - "label": "10", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_010.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_010.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_010.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_010.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_011.json", - "@type": "sc:Canvas", - "label": "11", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_011.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_011.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_011.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_011.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_012.json", - "@type": "sc:Canvas", - "label": "12", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_012.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_012.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_012.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_012.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_013.json", - "@type": "sc:Canvas", - "label": "13", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_013.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_013.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_013.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_013.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_014.json", - "@type": "sc:Canvas", - "label": "14", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_014.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_014.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_014.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_014.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_015.json", - "@type": "sc:Canvas", - "label": "15", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_015.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_015.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_015.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_015.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_016.json", - "@type": "sc:Canvas", - "label": "16", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_016.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_016.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_016.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_016.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_017.json", - "@type": "sc:Canvas", - "label": "17", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_017.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_017.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_017.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_017.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_018.json", - "@type": "sc:Canvas", - "label": "18", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_018.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_018.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_018.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_018.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_019.json", - "@type": "sc:Canvas", - "label": "19", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_019.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_019.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_019.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_019.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_020.json", - "@type": "sc:Canvas", - "label": "20", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_020.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_020.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_020.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_020.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_021.json", - "@type": "sc:Canvas", - "label": "21", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_021.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_021.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_021.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_021.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_022.json", - "@type": "sc:Canvas", - "label": "22", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_022.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_022.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_022.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_022.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_023.json", - "@type": "sc:Canvas", - "label": "23", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_023.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_023.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_023.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_023.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_024.json", - "@type": "sc:Canvas", - "label": "24", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_024.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_024.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_024.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_024.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_025.json", - "@type": "sc:Canvas", - "label": "25", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_025.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_025.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_025.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_025.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_026.json", - "@type": "sc:Canvas", - "label": "26", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_026.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_026.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_026.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_026.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_027.json", - "@type": "sc:Canvas", - "label": "27", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_027.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_027.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_027.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_027.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_028.json", - "@type": "sc:Canvas", - "label": "28", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_028.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_028.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_028.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_028.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_029.json", - "@type": "sc:Canvas", - "label": "29", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_029.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_029.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_029.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_029.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_030.json", - "@type": "sc:Canvas", - "label": "30", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_030.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_030.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_030.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_030.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_031.json", - "@type": "sc:Canvas", - "label": "31", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_031.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_031.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_031.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_031.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_032.json", - "@type": "sc:Canvas", - "label": "32", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_032.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_032.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_032.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_032.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_033.json", - "@type": "sc:Canvas", - "label": "33", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_033.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_033.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_033.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_033.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_034.json", - "@type": "sc:Canvas", - "label": "34", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_034.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_034.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_034.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_034.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_035.json", - "@type": "sc:Canvas", - "label": "35", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_035.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_035.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_035.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_035.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_036.json", - "@type": "sc:Canvas", - "label": "36", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_036.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_036.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_036.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_036.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_037.json", - "@type": "sc:Canvas", - "label": "37", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_037.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_037.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_037.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_037.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_038.json", - "@type": "sc:Canvas", - "label": "38", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_038.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_038.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_038.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_038.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_039.json", - "@type": "sc:Canvas", - "label": "39", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_039.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_039.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_039.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_039.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_040.json", - "@type": "sc:Canvas", - "label": "40", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_040.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_040.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_040.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_040.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_041.json", - "@type": "sc:Canvas", - "label": "41", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_041.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_041.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_041.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_041.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_042.json", - "@type": "sc:Canvas", - "label": "42", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_042.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_042.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_042.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_042.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_043.json", - "@type": "sc:Canvas", - "label": "43", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_043.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_043.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_043.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_043.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_044.json", - "@type": "sc:Canvas", - "label": "44", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_044.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_044.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_044.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_044.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_045.json", - "@type": "sc:Canvas", - "label": "45", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_045.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_045.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_045.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_045.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_046.json", - "@type": "sc:Canvas", - "label": "46", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_046.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_046.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_046.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_046.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_047.json", - "@type": "sc:Canvas", - "label": "47", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_047.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_047.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_047.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_047.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_048.json", - "@type": "sc:Canvas", - "label": "48", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_048.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_048.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_048.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_048.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_049.json", - "@type": "sc:Canvas", - "label": "49", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_049.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_049.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_049.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_049.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_050.json", - "@type": "sc:Canvas", - "label": "50", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_050.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_050.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_050.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_050.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_051.json", - "@type": "sc:Canvas", - "label": "51", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_051.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_051.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_051.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_051.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_052.json", - "@type": "sc:Canvas", - "label": "52", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_052.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_052.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_052.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_052.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_053.json", - "@type": "sc:Canvas", - "label": "53", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_053.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_053.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_053.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_053.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_054.json", - "@type": "sc:Canvas", - "label": "54", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_054.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_054.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_054.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_054.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_055.json", - "@type": "sc:Canvas", - "label": "55", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_055.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_055.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_055.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_055.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_056.json", - "@type": "sc:Canvas", - "label": "56", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_056.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_056.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_056.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_056.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_057.json", - "@type": "sc:Canvas", - "label": "57", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_057.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_057.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_057.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_057.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_058.json", - "@type": "sc:Canvas", - "label": "58", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_058.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_058.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_058.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_058.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_059.json", - "@type": "sc:Canvas", - "label": "59", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_059.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_059.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_059.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_059.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_060.json", - "@type": "sc:Canvas", - "label": "60", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_060.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_060.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_060.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_060.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_061.json", - "@type": "sc:Canvas", - "label": "61", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_061.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_061.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_061.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_061.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_062.json", - "@type": "sc:Canvas", - "label": "62", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_062.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_062.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_062.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_062.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_063.json", - "@type": "sc:Canvas", - "label": "63", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_063.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_063.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_063.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_063.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_064.json", - "@type": "sc:Canvas", - "label": "64", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_064.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_064.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_064.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_064.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_065.json", - "@type": "sc:Canvas", - "label": "65", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_065.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_065.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_065.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_065.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_066.json", - "@type": "sc:Canvas", - "label": "66", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_066.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_066.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_066.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_066.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_067.json", - "@type": "sc:Canvas", - "label": "67", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_067.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_067.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_067.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_067.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_068.json", - "@type": "sc:Canvas", - "label": "68", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_068.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_068.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_068.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_068.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_069.json", - "@type": "sc:Canvas", - "label": "69", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_069.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_069.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_069.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_069.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_070.json", - "@type": "sc:Canvas", - "label": "70", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_070.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_070.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_070.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_070.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_071.json", - "@type": "sc:Canvas", - "label": "71", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_071.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_071.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_071.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_071.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_072.json", - "@type": "sc:Canvas", - "label": "72", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_072.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_072.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_072.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_072.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_073.json", - "@type": "sc:Canvas", - "label": "73", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_073.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_073.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_073.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_073.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_074.json", - "@type": "sc:Canvas", - "label": "74", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_074.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_074.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_074.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_074.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_075.json", - "@type": "sc:Canvas", - "label": "75", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_075.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_075.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_075.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_075.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_076.json", - "@type": "sc:Canvas", - "label": "76", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_076.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_076.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_076.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_076.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_077.json", - "@type": "sc:Canvas", - "label": "77", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_077.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_077.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_077.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_077.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_078.json", - "@type": "sc:Canvas", - "label": "78", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_078.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_078.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_078.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_078.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_079.json", - "@type": "sc:Canvas", - "label": "79", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_079.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_079.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_079.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_079.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_080.json", - "@type": "sc:Canvas", - "label": "80", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_080.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_080.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_080.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_080.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_081.json", - "@type": "sc:Canvas", - "label": "81", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_081.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_081.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_081.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_081.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_082.json", - "@type": "sc:Canvas", - "label": "82", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_082.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_082.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_082.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_082.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_083.json", - "@type": "sc:Canvas", - "label": "83", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_083.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_083.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_083.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_083.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_084.json", - "@type": "sc:Canvas", - "label": "84", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_084.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_084.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_084.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_084.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_085.json", - "@type": "sc:Canvas", - "label": "85", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_085.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_085.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_085.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_085.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_086.json", - "@type": "sc:Canvas", - "label": "86", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_086.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_086.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_086.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_086.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_087.json", - "@type": "sc:Canvas", - "label": "87", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_087.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_087.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_087.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_087.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_088.json", - "@type": "sc:Canvas", - "label": "88", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_088.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_088.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_088.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_088.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_089.json", - "@type": "sc:Canvas", - "label": "89", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_089.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_089.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_089.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_089.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_090.json", - "@type": "sc:Canvas", - "label": "90", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_090.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_090.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_090.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_090.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_091.json", - "@type": "sc:Canvas", - "label": "91", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_091.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_091.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_091.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_091.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_092.json", - "@type": "sc:Canvas", - "label": "92", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_092.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_092.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_092.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_092.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_093.json", - "@type": "sc:Canvas", - "label": "93", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_093.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_093.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_093.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_093.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_094.json", - "@type": "sc:Canvas", - "label": "94", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_094.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_094.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_094.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_094.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_095.json", - "@type": "sc:Canvas", - "label": "95", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_095.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_095.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_095.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_095.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_096.json", - "@type": "sc:Canvas", - "label": "96", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_096.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_096.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_096.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_096.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_097.json", - "@type": "sc:Canvas", - "label": "97", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_097.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_097.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_097.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_097.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_098.json", - "@type": "sc:Canvas", - "label": "98", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_098.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_098.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_098.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_098.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_099.json", - "@type": "sc:Canvas", - "label": "99", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_099.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_099.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_099.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_099.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_100.json", - "@type": "sc:Canvas", - "label": "100", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_100.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_100.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_100.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_100.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_101.json", - "@type": "sc:Canvas", - "label": "101", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_101.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_101.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_101.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_101.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_102.json", - "@type": "sc:Canvas", - "label": "102", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_102.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_102.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_102.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_102.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_103.json", - "@type": "sc:Canvas", - "label": "103", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_103.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_103.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_103.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_103.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_104.json", - "@type": "sc:Canvas", - "label": "104", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_104.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_104.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_104.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_104.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_105.json", - "@type": "sc:Canvas", - "label": "105", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_105.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_105.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_105.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_105.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_106.json", - "@type": "sc:Canvas", - "label": "106", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_106.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_106.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_106.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_106.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_107.json", - "@type": "sc:Canvas", - "label": "107", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_107.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_107.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_107.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_107.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_108.json", - "@type": "sc:Canvas", - "label": "108", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_108.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_108.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_108.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_108.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_109.json", - "@type": "sc:Canvas", - "label": "109", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_109.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_109.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_109.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_109.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_110.json", - "@type": "sc:Canvas", - "label": "110", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_110.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_110.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_110.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_110.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_111.json", - "@type": "sc:Canvas", - "label": "111", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_111.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_111.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_111.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_111.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_112.json", - "@type": "sc:Canvas", - "label": "112", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_112.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_112.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_112.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_112.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_113.json", - "@type": "sc:Canvas", - "label": "113", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_113.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_113.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_113.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_113.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_114.json", - "@type": "sc:Canvas", - "label": "114", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_114.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_114.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_114.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_114.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_115.json", - "@type": "sc:Canvas", - "label": "115", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_115.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_115.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_115.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_115.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_116.json", - "@type": "sc:Canvas", - "label": "116", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_116.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_116.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_116.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_116.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_117.json", - "@type": "sc:Canvas", - "label": "117", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_117.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_117.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_117.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_117.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_118.json", - "@type": "sc:Canvas", - "label": "118", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_118.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_118.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_118.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_118.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_119.json", - "@type": "sc:Canvas", - "label": "119", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_119.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_119.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_119.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_119.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_120.json", - "@type": "sc:Canvas", - "label": "120", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_120.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_120.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_120.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_120.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_121.json", - "@type": "sc:Canvas", - "label": "121", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_121.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_121.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_121.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_121.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_122.json", - "@type": "sc:Canvas", - "label": "122", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_122.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_122.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_122.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_122.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_123.json", - "@type": "sc:Canvas", - "label": "123", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_123.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_123.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_123.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_123.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_124.json", - "@type": "sc:Canvas", - "label": "124", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_124.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_124.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_124.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_124.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_125.json", - "@type": "sc:Canvas", - "label": "125", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_125.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_125.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_125.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_125.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_126.json", - "@type": "sc:Canvas", - "label": "126", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_126.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_126.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_126.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_126.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_127.json", - "@type": "sc:Canvas", - "label": "127", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_127.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_127.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_127.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_127.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_128.json", - "@type": "sc:Canvas", - "label": "128", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_128.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_128.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_128.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_128.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_129.json", - "@type": "sc:Canvas", - "label": "129", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_129.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_129.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_129.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_129.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_130.json", - "@type": "sc:Canvas", - "label": "130", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_130.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_130.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_130.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_130.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_131.json", - "@type": "sc:Canvas", - "label": "131", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_131.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_131.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_131.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_131.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_132.json", - "@type": "sc:Canvas", - "label": "132", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_132.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_132.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_132.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_132.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_133.json", - "@type": "sc:Canvas", - "label": "133", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_133.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_133.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_133.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_133.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_134.json", - "@type": "sc:Canvas", - "label": "134", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_134.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_134.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_134.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_134.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_135.json", - "@type": "sc:Canvas", - "label": "135", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_135.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_135.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_135.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_135.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_136.json", - "@type": "sc:Canvas", - "label": "136", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_136.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_136.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_136.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_136.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_137.json", - "@type": "sc:Canvas", - "label": "137", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_137.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_137.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_137.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_137.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_138.json", - "@type": "sc:Canvas", - "label": "138", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_138.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_138.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_138.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_138.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_139.json", - "@type": "sc:Canvas", - "label": "139", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_139.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_139.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_139.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_139.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_140.json", - "@type": "sc:Canvas", - "label": "140", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_140.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_140.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_140.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_140.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_141.json", - "@type": "sc:Canvas", - "label": "141", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_141.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_141.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_141.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_141.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_142.json", - "@type": "sc:Canvas", - "label": "142", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_142.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_142.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_142.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_142.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_143.json", - "@type": "sc:Canvas", - "label": "143", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_143.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_143.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_143.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_143.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_144.json", - "@type": "sc:Canvas", - "label": "144", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_144.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_144.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_144.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_144.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_145.json", - "@type": "sc:Canvas", - "label": "145", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_145.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_145.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_145.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_145.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_146.json", - "@type": "sc:Canvas", - "label": "146", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_146.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_146.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_146.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_146.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_147.json", - "@type": "sc:Canvas", - "label": "147", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_147.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_147.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_147.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_147.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_148.json", - "@type": "sc:Canvas", - "label": "148", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_148.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_148.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_148.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_148.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_149.json", - "@type": "sc:Canvas", - "label": "149", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_149.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_149.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_149.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_149.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_150.json", - "@type": "sc:Canvas", - "label": "150", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_150.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_150.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_150.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_150.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_151.json", - "@type": "sc:Canvas", - "label": "151", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_151.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_151.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_151.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_151.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_152.json", - "@type": "sc:Canvas", - "label": "152", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_152.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_152.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_152.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_152.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_153.json", - "@type": "sc:Canvas", - "label": "153", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_153.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_153.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_153.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_153.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_154.json", - "@type": "sc:Canvas", - "label": "154", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_154.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_154.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_154.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_154.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_155.json", - "@type": "sc:Canvas", - "label": "155", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_155.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_155.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_155.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_155.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_156.json", - "@type": "sc:Canvas", - "label": "156", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_156.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_156.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_156.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_156.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_157.json", - "@type": "sc:Canvas", - "label": "157", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_157.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_157.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_157.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_157.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_158.json", - "@type": "sc:Canvas", - "label": "158", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_158.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_158.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_158.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_158.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_159.json", - "@type": "sc:Canvas", - "label": "159", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_159.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_159.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_159.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_159.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_160.json", - "@type": "sc:Canvas", - "label": "160", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_160.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_160.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_160.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_160.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_161.json", - "@type": "sc:Canvas", - "label": "161", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_161.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_161.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_161.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_161.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_162.json", - "@type": "sc:Canvas", - "label": "162", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_162.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_162.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_162.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_162.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_163.json", - "@type": "sc:Canvas", - "label": "163", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_163.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_163.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_163.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_163.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_164.json", - "@type": "sc:Canvas", - "label": "164", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_164.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_164.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_164.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_164.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_165.json", - "@type": "sc:Canvas", - "label": "165", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_165.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_165.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_165.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_165.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_166.json", - "@type": "sc:Canvas", - "label": "166", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_166.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_166.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_166.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_166.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_167.json", - "@type": "sc:Canvas", - "label": "167", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_167.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_167.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_167.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_167.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_168.json", - "@type": "sc:Canvas", - "label": "168", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_168.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_168.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_168.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_168.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_169.json", - "@type": "sc:Canvas", - "label": "169", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_169.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_169.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_169.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_169.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_170.json", - "@type": "sc:Canvas", - "label": "170", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_170.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_170.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_170.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_170.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_171.json", - "@type": "sc:Canvas", - "label": "171", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_171.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_171.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_171.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_171.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_172.json", - "@type": "sc:Canvas", - "label": "172", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_172.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_172.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_172.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_172.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_173.json", - "@type": "sc:Canvas", - "label": "173", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_173.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_173.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_173.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_173.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_174.json", - "@type": "sc:Canvas", - "label": "174", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_174.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_174.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_174.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_174.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_175.json", - "@type": "sc:Canvas", - "label": "175", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_175.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_175.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_175.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_175.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_176.json", - "@type": "sc:Canvas", - "label": "176", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_176.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_176.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_176.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_176.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_177.json", - "@type": "sc:Canvas", - "label": "177", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_177.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_177.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_177.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_177.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_178.json", - "@type": "sc:Canvas", - "label": "178", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_178.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_178.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_178.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_178.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_179.json", - "@type": "sc:Canvas", - "label": "179", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_179.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_179.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_179.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_179.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_180.json", - "@type": "sc:Canvas", - "label": "180", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_180.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_180.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_180.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_180.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_181.json", - "@type": "sc:Canvas", - "label": "181", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_181.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_181.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_181.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_181.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_182.json", - "@type": "sc:Canvas", - "label": "182", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_182.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_182.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_182.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_182.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_183.json", - "@type": "sc:Canvas", - "label": "183", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_183.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_183.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_183.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_183.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_184.json", - "@type": "sc:Canvas", - "label": "184", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_184.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_184.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_184.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_184.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_185.json", - "@type": "sc:Canvas", - "label": "185", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_185.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_185.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_185.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_185.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_186.json", - "@type": "sc:Canvas", - "label": "186", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_186.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_186.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_186.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_186.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_187.json", - "@type": "sc:Canvas", - "label": "187", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_187.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_187.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_187.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_187.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_188.json", - "@type": "sc:Canvas", - "label": "188", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_188.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_188.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_188.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_188.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_189.json", - "@type": "sc:Canvas", - "label": "189", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_189.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_189.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_189.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_189.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_190.json", - "@type": "sc:Canvas", - "label": "190", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_190.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_190.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_190.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_190.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_190a.json", - "@type": "sc:Canvas", - "label": "190a", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_190a.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_190a.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_190a.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_190a.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_190b.json", - "@type": "sc:Canvas", - "label": "190b", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_190b.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_190b.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_190b.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_190b.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_190c.json", - "@type": "sc:Canvas", - "label": "190c", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_190c.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_190c.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_190c.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_190c.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_190d.json", - "@type": "sc:Canvas", - "label": "190d", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_190d.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_190d.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_190d.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_190d.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_191.json", - "@type": "sc:Canvas", - "label": "191", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_191.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_191.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_191.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_191.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_192.json", - "@type": "sc:Canvas", - "label": "192", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_192.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_192.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_192.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_192.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_192a.json", - "@type": "sc:Canvas", - "label": "192a", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_192a.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_192a.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_192a.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_192a.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_192b.json", - "@type": "sc:Canvas", - "label": "192b", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_192b.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_192b.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_192b.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_192b.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_9999_001.json", - "@type": "sc:Canvas", - "label": "N1", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_9999_001.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_9999_001.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_9999_001.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_9999_001.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_9999_002.json", - "@type": "sc:Canvas", - "label": "N2", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_9999_002.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_9999_002.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_9999_002.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_9999_002.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_e006.json", - "@type": "sc:Canvas", - "label": "bindingF", - "viewingHint": "non-paged", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_e006.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_e006.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_e006.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_e006.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_e003.json", - "@type": "sc:Canvas", - "label": "bindingC", - "viewingHint": "non-paged", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_e003.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_e003.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_e003.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_e003.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_e002.json", - "@type": "sc:Canvas", - "label": "bindingB", - "viewingHint": "non-paged", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_e002.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_e002.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_e002.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_e002.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_e004.json", - "@type": "sc:Canvas", - "label": "bindingD", - "viewingHint": "non-paged", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_e004.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_e004.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_e004.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_e004.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_e007.json", - "@type": "sc:Canvas", - "label": "bindingG", - "viewingHint": "non-paged", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_e007.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_e007.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_e007.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_e007.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_e008.json", - "@type": "sc:Canvas", - "label": "bindingH", - "viewingHint": "non-paged", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_e008.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_e008.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_e008.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_e008.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_e009.json", - "@type": "sc:Canvas", - "label": "bindingI", - "viewingHint": "non-paged", - "height": 6132, - "width": 8176, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_e009.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_e009.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_e009.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 6132, - "width": 8176, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_e009.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_e010.json", - "@type": "sc:Canvas", - "label": "bindingJ", - "viewingHint": "non-paged", - "height": 6132, - "width": 8176, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_e010.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_e010.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_e010.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 6132, - "width": 8176, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_e010.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_e011.json", - "@type": "sc:Canvas", - "label": "bindingK", - "viewingHint": "non-paged", - "height": 6132, - "width": 8176, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_e011.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_e011.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_e011.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 6132, - "width": 8176, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_e011.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_MassE.json", - "@type": "sc:Canvas", - "label": "bindingRulerE", - "viewingHint": "non-paged", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_MassE.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_MassE.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_MassE.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_MassE.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_MassS.json", - "@type": "sc:Canvas", - "label": "bindingRulerS", - "viewingHint": "non-paged", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_MassS.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_MassS.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_MassS.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_MassS.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_ProfilE.json", - "@type": "sc:Canvas", - "label": "bindingProfileE", - "viewingHint": "non-paged", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_ProfilE.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_ProfilE.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_ProfilE.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_ProfilE.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_ProfilS.json", - "@type": "sc:Canvas", - "label": "bindingProfileS", - "viewingHint": "non-paged", - "height": 8176, - "width": 6132, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_ProfilS.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_ProfilS.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_ProfilS.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 8176, - "width": 6132, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_ProfilS.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - }, - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_ProfilSG.json", - "@type": "sc:Canvas", - "label": "bindingProfileSG", - "viewingHint": "non-paged", - "height": 6132, - "width": 8176, - "images": [ - { - "@id": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/annotation/csg-0390_ProfilSG.json", - "@type": "oa:Annotation", - "motivation": "sc:painting", - "on": "http://www.e-codices.unifr.ch/metadata/iiif/csg-0390/canvas/csg-0390_ProfilSG.json", - "resource": { - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_ProfilSG.jp2/full/full/0/default.jpg", - "@type": "dctypes:Image", - "format": "image/jpeg", - "height": 6132, - "width": 8176, - "service": { - "@context": "http://iiif.io/api/image/2/context.json", - "@id": "http://www.e-codices.unifr.ch/loris/csg/csg-0390/csg-0390_ProfilSG.jp2", - "profile": "http://library.stanford.edu/iiif/image-api/compliance.html#level1" - } - } - } - ] - } - ] - } - ] -} \ No newline at end of file diff --git a/get-webpack-config.js b/get-webpack-config.js deleted file mode 100644 index 83d562d3..00000000 --- a/get-webpack-config.js +++ /dev/null @@ -1,54 +0,0 @@ -var webpack = require('webpack'); - -// polyfill array for older browsers. -require('array.prototype.fill'); - -module.exports = function (mode, options) -{ - var isCompressed = options && options.compress; - - var outputFilename; - - if (options && options.outputFilename) - outputFilename = options.outputFilename; - else if (isCompressed) - outputFilename = 'diva.min.js'; - else - outputFilename = 'diva.js'; - - var config = { - entry: [ - './source/js/register-builtin-plugins.js', - // The export - './source/js/diva.js' - ], - output: { - path: __dirname + '/build/js', - filename: outputFilename, - library: 'diva', - libraryTarget: 'umd' - }, - externals: { - jquery: { - root: 'jQuery', - amd: 'jquery', - commonjs: 'jquery', - commonjs2: 'jquery' - } - }, - devtool: mode === 'production' ? 'cheap-sourcemap' : 'inline-source-map' - }; - - if (isCompressed) - { - config.plugins = [ - new webpack.optimize.UglifyJsPlugin({ - compress: { - warnings: false - } - }) - ]; - } - - return config; -}; diff --git a/gulpfile.js b/gulpfile.js deleted file mode 100644 index 66fbe7db..00000000 --- a/gulpfile.js +++ /dev/null @@ -1,222 +0,0 @@ -'use strict'; - -var gulp = require('gulp'); -var $ = require('gulp-load-plugins')(); -var merge = require('merge-stream'); -var sourcemaps = require('gulp-sourcemaps'); -var less = require('gulp-less'); -var rename = require('gulp-rename'); - -var karma = require('karma'); - -var Promise = global.Promise || require('bluebird'); - -var getSourceCompiler = (function webpackCompilerGetter() -{ - var webpackCompiler = null; - - return function () - { - if (webpackCompiler === null) - { - var webpack = require('webpack'); - - var conf; - - if (process.env.DIVA_ENV === 'production') - conf = require('./webpack.conf.prod'); - else - conf = require('./webpack.conf.dev'); - - webpackCompiler = webpack(conf); - } - - return webpackCompiler; - }; -})(); - -gulp.task('develop:jshint', function() -{ - return gulp.src(['source/js/**/*.js']) - .pipe($.jshint({lookup: true, devel: true})) - .pipe($.jshint.reporter('jshint-stylish')) - .pipe($.jshint.reporter('fail')); -}); - -gulp.task('develop:compile', function(done) -{ - getSourceCompiler().run(done); - -}); - -gulp.task('develop:styles', function() -{ - var autoprefixer = require('autoprefixer'); - var auditDivaClasses = require('./audit-diva-css-classes'); - var reporter = require('postcss-reporter'); - - var autoprefix = autoprefixer(['last 2 versions', 'Firefox ESR', 'IE >= 9']); - - var unminimized = gulp.src('source/css/diva.less') - .pipe(sourcemaps.init()) - .pipe(less()) - .pipe($.postcss([autoprefix, auditDivaClasses(), reporter])) - .pipe(sourcemaps.write('./', {sourceRoot: '/source/css'})) - .pipe(gulp.dest('build/css')); - - var minimized = gulp.src('source/css/diva.less') - .pipe(rename({suffix: '.min'})) - .pipe(sourcemaps.init()) - .pipe(less({compress: true})) - .pipe($.postcss([autoprefix])) - .pipe(sourcemaps.write('./', {sourceRoot: '/source/css'})) - .pipe(gulp.dest('build/css')); - - return merge(minimized, unminimized); -}); - -gulp.task('develop:server', function(done) -{ - var serveStatic = require('serve-static'); - var serveIndex = require('serve-index'); - - var app = require('connect')() - .use(require('connect-livereload')({port:35729})) - .use(serveStatic('.')) - .use(serveIndex('.')) - .use('/js', serveStatic('build/js')) - .use('/css', serveStatic('build/css')) - .use('/demo', serveStatic('demo/diva')); // Munge demo/ and demo/diva/ directories - - require('http') - .createServer(app) - .listen(9001) - .on('listening', function() - { - console.log('Started a web server on http://localhost:9001'); - console.log('Visit http://localhost:9001/demo/ or http://localhost:9001/tests/'); - done(); - }); -}); - -gulp.task('develop:clean', function(done) -{ - var del = require('del'); - - del(['build/'], function() { - console.log('Cleaning build directory'); - done(); - }); -}); - -gulp.task('develop:build', ['develop:styles', 'develop:compile']); - -gulp.task('develop', ['develop:styles', 'develop:server', 'develop:testServer'], function() -{ - $.livereload.listen(); - - gulp.watch([ - 'build/js/**/*.js', - 'build/css/**/*.css' - ]).on('change', $.livereload.changed); - - gulp.watch(['source/js/**/*.js', 'tests/**/*.js'], ['develop:jshint']); - gulp.watch('source/css/**/*.less', ['develop:styles']); - - // This also runs the initial compilation - getSourceCompiler().watch({}, logWebpackErrors); - - function logWebpackErrors(err, stats) - { - if (err) - console.error(err); - - var jsonStats = stats.toJson(); - - if (jsonStats.errors.length > 0) - console.error(jsonStats.errors); - - if (jsonStats.warnings.length > 0) - console.error(jsonStats.warnings); - } -}); - -gulp.task('release', function () -{ - var runSequence = require('run-sequence'); - var checkGitStatus = require('./tools/check-git-status'); - - if (!process.env.DIVA_ENV) - { - process.env.DIVA_ENV = 'production'; - } - else if (process.env.DIVA_ENV !== 'production') - { - console.warn('Running release script in ' + process.env.DIVA_ENV + ' mode!'); - } - - return checkGitStatus().then(function () - { - return new Promise(function (resolve, reject) - { - runSequence('develop:clean', 'develop:build', 'release:version', 'release:package', function (err) - { - if (err) - reject(err); - else - resolve(); - }); - }) - }); -}); - -gulp.task('release:version', function () -{ - var npmExec = require('./tools/npm-exec'); - var argv = require('yargs') - .usage('Usage: gulp release -v [num]') - .demand(['v']) - .alias('v', 'version') - .argv; - - return npmExec(['version', '--no-git-tag-version', argv.v]); -}); - -gulp.task('release:package', function () -{ - var generateArchives = require('./tools/generate-archives'); - - return generateArchives().then(function () - { - console.warn('Manually release on GitHub, publish to npm, and update the website'); - console.warn('See https://github.com/DDMAL/diva.js/wiki/Developing-Diva.js#releasing-a-new-version'); - }); -}); - -// Start a background Karma server -gulp.task('develop:testServer', function (done) -{ - var server = new karma.Server({ - configFile: __dirname + '/karma.conf.js', - singleRun: false, - autoWatch: false, - logLevel: 'OFF' // disable logging in the server process - }); - - server.start(); - - console.log('Karma server started. Run `npm run trigger-tests` to run the test suite.'); - - done(); -}); - -// The JS dependencies are bundled inside Karma, so we only to build the styles -gulp.task('develop:test', ['develop:styles'], function (done) -{ - new karma.Server({ - configFile: __dirname + '/karma.conf.js', - singleRun: true - }, done).start(); -}); - -gulp.task('default', ['develop:build']); diff --git a/index.html b/index.html new file mode 100644 index 00000000..a05e3cb9 --- /dev/null +++ b/index.html @@ -0,0 +1,28 @@ + + + + + + + + Document + + +
+ + + + + + + + diff --git a/karma.conf.js b/karma.conf.js index 0dee3699..d6f303b5 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -1,52 +1,87 @@ -module.exports = function(config) -{ - // Default port plus three; hopefully, this will help prevent collisions - var KARMA_PORT = 9879; +// Karma configuration +// Generated on Tue Jul 31 2018 14:40:42 GMT-0400 (Eastern Daylight Time) - var webpackConfig = process.env.DIVA_ENV === 'coverage' ? - require('./webpack.conf.coverage') : - require('./webpack.conf.test'); +module.exports = function(config) { + + var webpackConfig = require('./webpack.config.test'); + process.env.CHROME_BIN = require('puppeteer').executablePath() - var files = [ - // Assets - {pattern: 'demo/**/*.json', included: false, served: true}, + config.set({ - // CSS - 'build/css/diva.min.css', - {pattern: 'build/css/diva.min.css.map', included: false, served: true}, + // base path that will be used to resolve all patterns (eg. files, exclude) + basePath: '', - // JS (root file) - 'tests/main.js' - ]; - config.set({ - frameworks: ['qunit'], + // frameworks to use + // available frameworks: https://npmjs.org/browse/keyword/karma-adapter + frameworks: ['mocha'], - preprocessors: { - 'tests/main.js': ['webpack', 'sourcemap'] - }, - webpack: webpackConfig, + // list of files / patterns to load in the browser + files: [ + 'test/main.js', + 'build/diva.css' + ], - webpackMiddleware: { - noInfo: true - }, - reporters: ['mocha', 'coverage'], + // list of files / patterns to exclude + exclude: [ + ], - coverageReporter: { - type: 'html', - dir: 'coverage/' - }, - browsers: ['PhantomJS'], + // preprocess matching files before serving them to the browser + // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor + preprocessors: { + 'test/main.js': ['webpack', 'babel'] + }, - port: KARMA_PORT, - proxies: { - // Needed to load the test manifests - '/demo/': 'http://localhost:' + KARMA_PORT + '/base/demo/' + webpack: webpackConfig, + + babelPreprocessor: { + options: { + presets: ['env'] }, + }, + + // test results reporter to use + // possible values: 'dots', 'progress' + // available reporters: https://npmjs.org/browse/keyword/karma-reporter + reporters: ['mocha', 'coverage-istanbul'], + + coverageIstanbulReporter: { + reports: [ 'html', 'text-summary' ], + fixWebpackSourcePaths: true + }, + + + // web server port + port: 9876, + + + // enable / disable colors in the output (reporters and logs) + colors: true, + + + // level of logging + // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG + logLevel: config.LOG_INFO, + + + // enable / disable watching file and executing tests whenever any file changes + autoWatch: false, + + + // start these browsers + // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher + browsers: ['ChromeHeadless'], + + + // Continuous Integration mode + // if true, Karma captures browsers, runs the tests and exits + singleRun: true, - files: files - }); -}; + // Concurrency level + // how many browser should be started simultaneous + concurrency: Infinity + }) +} diff --git a/legacy/demo/canvas.php b/legacy/demo/canvas.php deleted file mode 100644 index f8cc2b32..00000000 --- a/legacy/demo/canvas.php +++ /dev/null @@ -1,19 +0,0 @@ - diff --git a/legacy/demo/demo.css b/legacy/demo/demo.css deleted file mode 100644 index db185378..00000000 --- a/legacy/demo/demo.css +++ /dev/null @@ -1,52 +0,0 @@ -* { - margin: 0; - padding: 0; -} - -body { - font-family: "Helvetica Neue", Helvetica, sans-serif; - font-size: 13px; -} - -#diva-wrapper { - max-width: 995px; - margin: 0 auto; - padding: 0 13px; -} - -.double-viewer { - position: relative; - width: 430px; -} - -#diva-one { - float: left; -} - -#diva-two { - float: right; -} - -.double-viewer .diva-outer { - height: 500px; - min-width: 310px; - max-width: 450px; -} - -#integrated-viewer { - margin-bottom: 20px; -} - -#integrated-viewer .diva-outer { - height: 500px; -} - -h1 { - font-size: 3.5em; - margin-top: 40px; - margin-bottom: 10px; -} - -p { - padding: 15px 0px; -} diff --git a/legacy/demo/demo.php b/legacy/demo/demo.php deleted file mode 100644 index 38bae1e6..00000000 --- a/legacy/demo/demo.php +++ /dev/null @@ -1,14 +0,0 @@ - diff --git a/legacy/demo/double.html b/legacy/demo/double.html deleted file mode 100644 index 9ef040f8..00000000 --- a/legacy/demo/double.html +++ /dev/null @@ -1,163 +0,0 @@ - - - - Diva.js demo - - - - - - - - - - - -
-
-
-

- Extra controls: - - - - - - - - -

-
- - diff --git a/legacy/demo/index.html b/legacy/demo/index.html deleted file mode 100644 index 012b1365..00000000 --- a/legacy/demo/index.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - Diva.js - single viewer layout demo - - - - - - - - - - - -
- - diff --git a/legacy/demo/integrated.html b/legacy/demo/integrated.html deleted file mode 100644 index 29cbb70f..00000000 --- a/legacy/demo/integrated.html +++ /dev/null @@ -1,48 +0,0 @@ - - - - Diva.js - single viewer layout demo - - - - - - - - - - - -
-

Integrated viewer demo

-

This demo features a viewer that is only one small component of a page. This is done by setting contained: true when initialising the document viewer. This way, the fullscreen icon is located not at the top of the page, but instead within the boundaries of the container element.

-

It is also possible to prevent the title from showing up by setting enableAutoTitle: false. This can be useful if the title is shown somewhere else on the page, e.g. at the very top.

-

The rest of the text on this page is filler text meant to illustrate content on a page.

-

Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima. Eodem modo typi, qui nunc nobis videntur parum clari, fiant sollemnes in futurum.

-
-

Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima. Eodem modo typi, qui nunc nobis videntur parum clari, fiant sollemnes in futurum.

-
- - diff --git a/legacy/demo/readme.md b/legacy/demo/readme.md deleted file mode 100644 index e69de29b..00000000 diff --git a/legacy/demo/single.html b/legacy/demo/single.html deleted file mode 100644 index 012b1365..00000000 --- a/legacy/demo/single.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - Diva.js - single viewer layout demo - - - - - - - - - - - -
- - diff --git a/legacy/divaserve/divaserve.php b/legacy/divaserve/divaserve.php deleted file mode 100644 index 4130bc94..00000000 --- a/legacy/divaserve/divaserve.php +++ /dev/null @@ -1,239 +0,0 @@ - $img_hei) ? $img_wid : $img_hei; - $t_dim = ($img_wid > $img_hei) ? $t_wid : $t_hei; - - $zoom_levels = ceil(log(($largest_dim + 1)/($t_dim + 1), 2)); - return intval($zoom_levels); -} - -function incorporate_zoom($img_dim, $zoom_difference) { - return $img_dim / pow(2, $zoom_difference); -} - -function check_memcache() { - global $MEMCACHE_SERVER, $MEMCACHE_PORT; - if (extension_loaded('memcached')) { - $m = new Memcached(); - $avail = $m->addServer($MEMCACHE_SERVER, $MEMCACHE_PORT); - if ($avail) { - return TRUE; - } else { - return FALSE; - } - } else { - return FALSE; - } -} - -$MEMCACHE_AVAILABLE = check_memcache(); -if($MEMCACHE_AVAILABLE) { - $MEMCONN = new Memcached(); - $MEMCONN->addServer($MEMCACHE_SERVER, $MEMCACHE_PORT); -} - -if (!isset($_GET['d'])) { - die("Missing 'd' param (image directory)"); -} - -$dir = preg_replace('/[^-a-zA-Z0-9_]/', '', $_GET['d']); - -$til_wid_get = (isset($_GET['w'])) ? intval($_GET['w']) : 0; -$til_hei_get = (isset($_GET['h'])) ? intval($_GET['h']) : 0; -$til_wid = ($til_wid_get > 0) ? $til_wid_get : 256; -$til_hei = ($til_hei_get > 0) ? $til_hei_get : 256; - -$cache_file = $CACHE_DIR . "/" . $dir . ".json"; -$img_dir = $IMAGE_DIR . "/" . $dir; - -if ($MEMCACHE_AVAILABLE) { - $cachekey = $dir; -} - -$pgs = array(); - -if (!file_exists($CACHE_DIR)) { - // Create the diva.js/ directory under /tmp/ - mkdir($img_cache, 0755); -} - -// If the cache file does not exist, compute all the data -if (!file_exists($cache_file)) { - $images = array(); - $lowest_max_zoom = 0; - - $i = 0; - foreach (glob($img_dir . '/*') as $img_file) { - $img_size = false; - - $img_size = getimagesize($img_file); - - /* - Since we're fairly liberal with the files we pull in, - and we don't just want to go on image extensions - we need to check if it's actually an image. - */ - if(!$img_size) { - continue; - } - - $img_wid = $img_size[0]; - $img_hei = $img_size[1]; - - $max_zoom = get_max_zoom_level($img_wid, $img_hei, $til_wid, $til_hei); - $lowest_max_zoom = ($lowest_max_zoom > $max_zoom || $lowest_max_zoom == 0) ? $max_zoom : $lowest_max_zoom; - - // Figure out the image filename - $img_fn = substr($img_file, strrpos($img_file, '/') + 1); - - $images[$i] = array( - 'mx_h' => $img_hei, - 'mx_w' => $img_wid, - 'mx_z' => $max_zoom, - 'fn' => $img_fn, - ); - - $i++; - } - - // Now go through them again, store in $pgs - // We do it again so we don't send unnecessary data (for zooms greater than lowest_max_zoom) - $num_pages = $max_ratio = $min_ratio = 0; - $t_wid = array_fill(0, $lowest_max_zoom + 1, 0); - $t_hei = array_fill(0, $lowest_max_zoom + 1, 0); - $mx_h = array_fill(0, $lowest_max_zoom + 1, 0); - $mx_w = array_fill(0, $lowest_max_zoom + 1, 0); - $a_wid = array(); - $a_hei = array(); - - for ($i = 0; $i < count($images); $i++) { - if (array_key_exists($i, $images)) { - $page_data = array(); - - // Get data for all zoom levels - for ($j = 0; $j <= $lowest_max_zoom; $j++) { - $h = incorporate_zoom($images[$i]['mx_h'], $lowest_max_zoom - $j); - $w = incorporate_zoom($images[$i]['mx_w'], $lowest_max_zoom - $j); - $c = ceil($w / $til_wid); - $r = ceil($h / $til_wid); - $page_data[] = array( - 'c' => $c, - 'r' => $r, - 'h' => $h, - 'w' => $w, - ); - - $t_wid[$j] += $w; - $t_hei[$j] += $h; - - $mx_h[$j] = ($h > $mx_h[$j]) ? $h : $mx_h[$j]; - $mx_w[$j] = ($w > $mx_w[$j]) ? $w : $mx_w[$j]; - } - - $m_z = $images[$i]['mx_z']; - $fn = $images[$i]['fn']; - $pgs[] = array( - 'd' => $page_data, - 'm' => $m_z, - 'f' => $fn, - ); - - $ratio = $h / $w; - $max_ratio = ($ratio > $max_ratio) ? $ratio : $max_ratio; - $min_ratio = ($ratio < $min_ratio || $min_ratio == 0) ? $ratio : $min_ratio; - $num_pages++; - } - } - - // Calculate and store the average widths - for ($j = 0; $j <= $lowest_max_zoom; $j++) { - $a_wid[] = $t_wid[$j] / $num_pages; - $a_hei[] = $t_hei[$j] / $num_pages; - } - - // Setup the dimensions array - $dims = array( - 'a_wid' => $a_wid, - 'a_hei' => $a_hei, - 'max_w' => $mx_w, - 'max_h' => $mx_h, - 'max_ratio' => $max_ratio, - 'min_ratio' => $min_ratio, - 't_hei' => $t_hei, - 't_wid' => $t_wid - ); - - // Get the title by replacing hyphens, underscores with spaces and title-casing it - $title = str_replace('-', ' ', $dir); - $title = str_replace('_', ' ', $dir); - $title = ucwords($title); - - // The full array to be returned - $data = array( - 'item_title' => $title, - 'dims' => $dims, - 'max_zoom' => $lowest_max_zoom, - 'pgs' => $pgs - ); - - $json = json_encode($data); - - // Save it to a text file in the cache directory - file_put_contents($cache_file, $json); - - if ($MEMCACHE_AVAILABLE) { - $MEMCONN->set($cachekey, $json); - } - - echo $json; -} else { - if ($MEMCACHE_AVAILABLE) { - if (!($json = $MEMCONN->get($cachekey))) { - if ($MEMCONN->getResultCode() == Memcached::RES_NOTFOUND) { - $json = file_get_contents($cache_file); - $MEMCONN->set($cachekey, $json); - } - } - } else { - $json = file_get_contents($cache_file); - } - - echo $json; -} - -?> diff --git a/legacy/divaserve/divaserve.py b/legacy/divaserve/divaserve.py deleted file mode 100644 index e06ae7ce..00000000 --- a/legacy/divaserve/divaserve.py +++ /dev/null @@ -1,267 +0,0 @@ -# Diva.js divaserve module - -# Copyright (C) 2011, 2012 by Wendy Liu, Andrew Hankinson, Laurent Pugin - -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: - -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. - -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -import os -import math -import json -import warnings -import re - -try: - # you can set a site-wide configuration file named 'conf' - # where you can store settings for both your web application server - # and this module. - import conf -except ImportError: - # if you do not have a site-wide configuration file named - # 'conf.py', you can adjust your settings here. - class conf(object): - MEMCACHED_ENABLED = True - MEMCACHED_SERVER = '127.0.0.1:11211' - IMG_DIR = '/mnt/images' - TMP_DIR = '/tmp/diva.js' - -memcached_enabled = conf.MEMCACHED_ENABLED -if memcached_enabled: - try: - import pylibmc - except ImportError: - warnings.warn("No Memcached module detected. Disabling Memcached support") - memcached_enabled = False - - -class DivaServe(object): - """ - This Python module provides the metadata necessary for the JavaScript - front-end to function. It computes all of the tiled data dimensions - on the server, which is then sent back to the client as a JSON response. - - To ensure we don't have to continually process these large images for - every request, we cache the results in a cache directory. If the pylibmc - Python module is installed and Memcached support is enabled, it will cache - the image data in there as well. - - To use this module, instantiate this class. This will set up your Memcached - connection and ensure your temporary directory exists. - - >>> img_server = divaserve.DivaServe() - - To have it serve data, call getc() with the name of the image directory. This - must be a directory that is present in the location where you have configured your - IMG_DIR. - - >>> json_response = img_server.getc(document_dir) - """ - def __init__(self): - if memcached_enabled: - self.mc_conn = pylibmc.Client([conf.MEMCACHED_SERVER], binary=True) - self.mc_conn.behaviors = {"tcp_nodelay": True, "ketama": True} - - self.srvdir = conf.IMG_DIR - self.tmpdir = conf.TMP_DIR - if not os.path.exists(self.tmpdir): - os.mkdir(self.tmpdir) - - def getc(self, mdir): - return self._get_or_cache(str(mdir)) - - def _get_or_cache(self, mdir): - if self._try_memcache(mdir): - return self.mc_conn[mdir] - elif self._try_filecache(mdir): - f = open(os.path.join(self.tmpdir, "{0}.json".format(mdir)), 'r') - j = json.load(f) - f.close() - if memcached_enabled: - self.mc_conn.set(mdir, j) - return self.mc_conn[mdir] - else: - return j - else: - self._cache(mdir) - return self._get_or_cache(mdir) - - def _try_memcache(self, mdir): - if not memcached_enabled: - return False - if mdir in self.mc_conn: - return True - else: - return False - - def _try_filecache(self, mdir): - if os.path.exists(os.path.join(self.tmpdir, "{0}.json".format(mdir))): - return True - else: - return False - - def _cache(self, mdir): - key = mdir - img_dir = os.path.join(self.srvdir, mdir) - - files = os.listdir(img_dir) - files.sort(key=alphanum_key) # sort alphabetical, not asciibetical - lowest_max_zoom = 0 - zoomlevels = [] - images = [] - - for i, f in enumerate(files): - ignore, ext = os.path.splitext(f) - if f.startswith("."): - continue # ignore hidden files - - if ext in ('.jp2', '.jpx'): - width, height = self.__img_size_jp2(os.path.join(img_dir, f)) - elif ext in ('.tiff', '.tif'): - width, height = self.__img_size_tiff(os.path.join(img_dir, f)) - else: - continue # ignore anything else. - - max_zoom = self.__get_max_zoom_level(width, height) - im = { - 'mx_w': width, - 'mx_h': height, - 'mx_z': max_zoom, - 'fn': f - } - images.append(im) - zoomlevels.append(max_zoom) - lowest_max_zoom = min(zoomlevels) - max_ratio = min_ratio = 0 - t_wid = [0] * (lowest_max_zoom + 1) - t_hei = [0] * (lowest_max_zoom + 1) - mx_h = [0] * (lowest_max_zoom + 1) - mx_w = [0] * (lowest_max_zoom + 1) - a_wid = [] - a_hei = [] - - pgs = [] - max_ratio = 0 - min_ratio = 100 # initialize high so min() works - - for im in images: - page_data = [] - - for j in xrange(lowest_max_zoom + 1): - h = self.__incorporate_zoom(im['mx_h'], lowest_max_zoom - j) - w = self.__incorporate_zoom(im['mx_w'], lowest_max_zoom - j) - c = int(math.ceil(w / 256.)) - r = int(math.ceil(h / 256.)) - page_data.append({ - 'c': c, - 'r': r, - 'h': h, - 'w': w - }) - - t_wid[j] = t_wid[j] + w - t_hei[j] = t_hei[j] + h - mx_h[j] = max(h, mx_h[j]) - mx_w[j] = max(w, mx_w[j]) - ratio = float(h) / float(w) - max_ratio = max(ratio, max_ratio) - min_ratio = min(ratio, min_ratio) - - m_z = im['mx_z'] - fn = im['fn'] - - pgs.append({ - 'd': page_data, - 'm': m_z, - 'f': fn - }) - - for j in xrange(lowest_max_zoom + 1): - a_wid.append(t_wid[j] / float(len(images))) - a_hei.append(t_hei[j] / float(len(images))) - - dims = { - 'a_wid': a_wid, - 'a_hei': a_hei, - 'max_w': mx_w, - 'max_h': mx_h, - 'max_ratio': max_ratio, - 'min_ratio': min_ratio, - 't_hei': t_hei, - 't_wid': t_wid - } - - data = { - 'item_title': mdir, - 'dims': dims, - 'max_zoom': lowest_max_zoom, - 'pgs': pgs - } - - # cache it to disk so we don't have to re-do it if memcached gets restarted - if not os.path.exists(os.path.join(self.tmpdir, "{0}.json".format(mdir))): - f = open(os.path.join(self.tmpdir, "{0}.json".format(mdir)), 'w') - json.dump(data, f) - f.close() - - if memcached_enabled: - self.mc_conn.set(key, data) - - def __img_size_jp2(self, fn): - # we implement our own header reader since all the existing - # JPEG2000 libraries seem to read the entire image in, and they're - # just tooooo sloooowww. - f = open(fn, 'rb') - d = f.read(100) # the dimension data is within the first 100 bytes - startHeader = d.find('ihdr') - hs = startHeader + 4 - ws = startHeader + 8 - height = ord(d[hs]) * 256 ** 3 + ord(d[hs + 1]) * 256 ** 2 + ord(d[hs + 2]) * 256 + ord(d[hs + 3]) - width = ord(d[ws]) * 256 ** 3 + ord(d[ws + 1]) * 256 ** 2 + ord(d[ws + 2]) * 256 + ord(d[ws + 3]) - f.close() - return (width, height) - - def __img_size_tiff(self, fn): - # We can use the VIPS module here for TIFF, since it can handle all the - # ins and outs of the TIFF image format quite nicely. - from vipsCC import VImage - im = VImage.VImage(fn) - size = (im.Xsize(), im.Ysize()) - del im - return size - - def __get_max_zoom_level(self, width, height): - largest_dim = max(width, height) - zoom_levels = math.ceil(math.log((largest_dim + 1) / float(256 + 1), 2)) - return int(zoom_levels) - - def __incorporate_zoom(self, img_dim, zoom_diff): - return img_dim / float(2 ** zoom_diff) - - -def tryint(s): - try: - return int(s) - except: - return s - - -def alphanum_key(s): - """ Turn a string into a list of string and number chunks. - "z23a" -> ["z", 23, "a"] - """ - return [tryint(c) for c in re.split('([0-9]+)', s)] diff --git a/legacy/divaserve/readme.md b/legacy/divaserve/readme.md deleted file mode 100644 index e69de29b..00000000 diff --git a/legacy/divaserve/server.py b/legacy/divaserve/server.py deleted file mode 100644 index 54610016..00000000 --- a/legacy/divaserve/server.py +++ /dev/null @@ -1,45 +0,0 @@ -import tornado.web -import tornado.ioloop -import tornado.httpserver -import divaserve -import json - -""" -This is a sample server.py file for incorporating the divaserve module -into the Tornado web server. By default, this is configured to -handle a request for: - - http://example.com/divaserve?d=my_document_images - -and assumes that "/divaserve" is set as your divaserveURL in your diva.js -instantiation. - -""" - -img_server = divaserve.DivaServe() - - -class DivaHandler(tornado.web.RequestHandler): - def get(self): - """ - Grab the document directory. This is passed as a ?d argument, e.g., - 'http://www.example.com/divaserve?d=my_document_images' - This assumes that the folder: - /path/to/image/collections/my_document_images - exists, and that: - /path/to/image/collections - is set as your conf.IMG_DIR variable in the divaserve module. - """ - docdir = self.get_argument('d') - self.set_header("Content-Type", "application/json") - js = img_server.getc(docdir) - self.write(json.dumps(js)) - -application = tornado.web.Application([ - ("/divaserve", DivaHandler), -]) - -if __name__ == "__main__": - server = tornado.httpserver.HTTPServer(application) - server.listen(8081) - tornado.ioloop.IOLoop.instance().start() diff --git a/legacy/docs/.gitignore b/legacy/docs/.gitignore deleted file mode 100644 index c9b568f7..00000000 --- a/legacy/docs/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.pyc -*.swp diff --git a/legacy/docs/content/about.md b/legacy/docs/content/about.md deleted file mode 100644 index d94d6165..00000000 --- a/legacy/docs/content/about.md +++ /dev/null @@ -1,55 +0,0 @@ -{% include "normal_header.html" %} - -# About Diva.js - -Diva.js (Document Image Viewer with AJAX) is a Javascript frontend for viewing -documents, designed to work with digital libraries to present multi-page -documents as a single, continuous item. Only the pages that are being viewed at -any given time are actually present in the document, with the rest appended as -necessary, ensuring efficient memory usage and high loading speeds. Written as -a jQuery plugin, diva.js requires the jQuery Javascript library, along with -several jQuery plugins and the jQuery UI, all of which are included. On the -backend, the images will be served by IIPImage server after processing, and the -image information will be sent, in JSON format, through an AJAX request by a -PHP script (also included). - -## Developers - -Diva.js is developed by: - -* [Wendy Liu](http://dellsystem.me) -* [Andrew Hankinson](http://transientstudent.net) - -Project managers: - -* Laurent Pugin -* [Ichiro Fujinaga](http://music.mcgill.ca/~ich) - -## Feedback - -If you find Diva.js useful and are using it in any deployments (large or -small), please [let us know](mailto:andrew.hankinson@mail.mcgill.ca). This work -is part of our research, and keeping in touch about pilot projects or -full-scale deployments helps us figure out what kinds of tools are valuable in -digital library communities. - -## Sponsors - -Diva.js didn't spring up fully formed overnight. It's been an ongoing project -at the [Distributed Digital Music Archives and Libraries Lab -(DDMAL)](http://ddmal.music.mcgill.ca), at the [Schulich School of -Music](http://www.mcgill.ca/music) of [McGill -University](http://www.mcgill.ca/). It began as a collaboration with the [Swiss -RISM](http://www.rism-ch.org/) as part of a project funded by the [Swiss -National Science Foundation](http://www.snf.ch/E). Currently it is being -developed as part of a [three-year -grant](http://ddmal.music.mcgill.ca/wiki/Optical_Music_Recognition_for_Plainchant) -from the [Social Sciences and Humanities Research Council of Canada -(SSHRC)](http://www.sshrc-crsh.gc.ca/). We're also grateful for support from -the [Canadian Foundation for Innovation](http://www.innovation.ca/en) and the -[Centre for Interdisciplinary Research in Music Media and Technology -(CIRMMT)](http://www.cirmmt.mcgill.ca/). - -{% include "sponsor_logos.html" %} - -{% include "normal_footer.html" %} diff --git a/legacy/docs/content/contributing.md b/legacy/docs/content/contributing.md deleted file mode 100644 index 72dcdf5b..00000000 --- a/legacy/docs/content/contributing.md +++ /dev/null @@ -1,13 +0,0 @@ -{% include "normal_header.html" %} - -# Contributing - -We welcome contributions! If you want to hack away at Diva, the easiest way to do this is: - -1. Head over to our [GitHub repo](https://github.com/DDMAL/diva.js) and create a new personal fork. -2. Read our [documentation]({{ ROOT_URL }}documentation) to get familiar with what's going on. -3. Hack away at your local repo. (Hint: if you don't know what you want to do, take a look at our outstanding Issues) -4. When you think you're ready, send us a pull request. We'll check over your code, and then merge it in. -5. GOTO 3. - -{% include "normal_footer.html" %} diff --git a/legacy/docs/content/documentation/code/build-process.md b/legacy/docs/content/documentation/code/build-process.md deleted file mode 100644 index 6c3341ff..00000000 --- a/legacy/docs/content/documentation/code/build-process.md +++ /dev/null @@ -1 +0,0 @@ -This section of the documentation is under construction. Please check back soon. diff --git a/legacy/docs/content/documentation/code/index.md b/legacy/docs/content/documentation/code/index.md deleted file mode 100644 index 6c3341ff..00000000 --- a/legacy/docs/content/documentation/code/index.md +++ /dev/null @@ -1 +0,0 @@ -This section of the documentation is under construction. Please check back soon. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/addPageToQueue.md b/legacy/docs/content/documentation/code/javascript/_private_functions/addPageToQueue.md deleted file mode 100644 index 9decd6d8..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/addPageToQueue.md +++ /dev/null @@ -1,21 +0,0 @@ -{% load extras %} - -* **Parameters**: 5 - * **rowIndex**: the index of the row the page is in - * **pageIndex**: the index of the page - * **imageURL**: the full URL of the image at the specified dimensions, - converted to JPEG - * **pageWidth**: the desired width of the image - * **pageHeight**: the desired height of the image -* **Return type**: none -* **Called by**: [`loadRow()`](#loadRow) - -Used to prevent page images in grid view from being loaded unnecessarily. A -short delay is introduced between initially identifying a row that needs to be -loaded and actually loading the pages in that row (after checking that the row -still needs to be loaded). The duration of the delay is controlled by -{% settings_link "rowLoadTimeout" %}. - -The ID of the timeout (as returned by `setTimeout`) is added to the -{% settings_link "pageTimeouts" %} array to ensure that the loading is halted -if the user leaves grid view. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/adjustBrowserDims.md b/legacy/docs/content/documentation/code/javascript/_private_functions/adjustBrowserDims.md deleted file mode 100644 index fb3683e8..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/adjustBrowserDims.md +++ /dev/null @@ -1,16 +0,0 @@ -{% load extras %} - -* **Parameters**: 0 -* **Return type**: none -* **Called by**: [`handleEvents()`](#handleEvents) (within the event handler - for the `resize` event on the window, when not in fullscreen mode), - [`setupViewer()`](#setupViewer) (in the `success` callback function) - -Changes the dimensions of the document viewer pane based on the dimensions of -the window, for non-mobile devices (e.g., desktop computers). This adjustment -is performed following the initial load, and again whenever the window is -resized (and the user is not in fullscreen mode). - -To disable this automatic resizing for either width or height, set -{% settings_link "enableAutoHeight" %} or {% settings_link "enableAutoWidth" %} -to false, respectively. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/adjustFullscreenDims.md b/legacy/docs/content/documentation/code/javascript/_private_functions/adjustFullscreenDims.md deleted file mode 100644 index 8778676f..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/adjustFullscreenDims.md +++ /dev/null @@ -1,10 +0,0 @@ -{% load extras %} - -* **Parameters**: 0 -* **Return type**: none -* **Called by**: [`handleEvents()`](#handleEvents) (within the event handler - for the `resize` event on the window, when in fullscreen mode) - -Updates {% settings_link "panelHeight" %} and {% settings_link "panelWidth" %} -depending on the height and width (minus the scrollbar) of the window, when the -user is in fullscreen mode. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/adjustMobileWebkitDims.md b/legacy/docs/content/documentation/code/javascript/_private_functions/adjustMobileWebkitDims.md deleted file mode 100644 index d8a85c39..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/adjustMobileWebkitDims.md +++ /dev/null @@ -1,15 +0,0 @@ -{% load extras %} - -* **Parameters**: 0 -* **Return type**: none -* **Called by**: [`handleEvents()`](#handleEvents) (within the event handler - for the `orientationchange` event on the body), - [`setupViewer()`](#setupViewer) (in the `success` callback function) - -Changes the dimensions of the document viewer pane based on the dimensions of -the window for mobile devices. This adjustment is performed following the -initial load, and again whenever the orientation of the device is changed. - -To disable this automatic resizing for either width or height, set -{% settings_link "enableAutoHeight" %} or {% settings_link "enableAutoWidth" %} -to false, respectively. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/adjustPages.md b/legacy/docs/content/documentation/code/javascript/_private_functions/adjustPages.md deleted file mode 100644 index 5f021293..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/adjustPages.md +++ /dev/null @@ -1,10 +0,0 @@ -* **Parameters**: 1 - * **direction**: the direction in which we are scrolling (positive for - downward scroll, negative for upward scroll) -* **Return type**: none -* **Called by**: [`handleDocumentScroll()`](#handleDocumentScroll) - -Takes care of showing and hiding the necessary pages when a user scrolls -throught the document by calling [`attemptPageHide()`](#attemptPageHide) and -[`attemptPageShow()`](#attemptPageShow) as necessary. - diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/adjustRows.md b/legacy/docs/content/documentation/code/javascript/_private_functions/adjustRows.md deleted file mode 100644 index f4776e4a..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/adjustRows.md +++ /dev/null @@ -1,7 +0,0 @@ -* **Parameters**: 1 - * **direction**: the direction in which we are scrolling (positive for - downward scroll, negative for upward scroll) -* **Return type**: boolean -* **Called by**: [`handleGridScroll()`](#handleGridScroll) - -Like [`adjustPages()`](#adjustPages) but for rows. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/attemptPageHide.md b/legacy/docs/content/documentation/code/javascript/_private_functions/attemptPageHide.md deleted file mode 100644 index 9e742eb8..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/attemptPageHide.md +++ /dev/null @@ -1,10 +0,0 @@ -* **Parameters**: 2 - * **pageIndex**: the index of the initial page we want to hide - * **direction**: the direction in which we are scrolling (positive for - downward scroll, negative for upward scroll -* **Return type**: none -* **Called by**: [`attemptPageHide()`](#attemptPageHide) (recursive), - [`adjustPages()`](#adjustPages) - -Recursively attempts to hide the next page that is present in the DOM but is -not within the viewport, based on the direction of scroll. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/attemptPageShow.md b/legacy/docs/content/documentation/code/javascript/_private_functions/attemptPageShow.md deleted file mode 100644 index 3ed13c8c..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/attemptPageShow.md +++ /dev/null @@ -1,12 +0,0 @@ -* **Parameters**: 2 - * **pageIndex**: the index of the initial page we want to show - * **direction**: the direction in which we are scrolling (positive for - downward scroll, negative for upward scroll -* **Return type**: none -* **Called by**: [`attemptPageShow()`](#attemptPageShow) (recursive), - [`adjustPages()`](#adjustPages) - -Recursively attempts to load the next page that hasn't yet been loaded, based -on the direction of scroll. Once it hits a page that is beyond the viewport in -the wrong direction (meaning that no subsequent pages could be within the -viewport), it stops. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/attemptRowHide.md b/legacy/docs/content/documentation/code/javascript/_private_functions/attemptRowHide.md deleted file mode 100644 index 5131e865..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/attemptRowHide.md +++ /dev/null @@ -1,10 +0,0 @@ -* **Parameters**: 2 - * **rowIndex**: the index of the initial row we want to hide - * **direction**: the direction in which we are scrolling (positive for - downward scroll, negative for upward scroll -* **Return type**: none -* **Called by**: [`attemptRowHide()`](#attemptRowHide) (recursive), - [`adjustRows()`](#adjustRages) - -Like [`attemptPageHide`](#attemptPageHide) but for rows. - diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/attemptRowShow.md b/legacy/docs/content/documentation/code/javascript/_private_functions/attemptRowShow.md deleted file mode 100644 index b45c416c..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/attemptRowShow.md +++ /dev/null @@ -1,9 +0,0 @@ -* **Parameters**: 2 - * **rowIndex**: the index of the initial row we want to show - * **direction**: the direction in which we are scrolling (positive for - downward scroll, negative for upward scroll -* **Return type**: none -* **Called by**: [`attemptRowShow()`](#attemptRowShow) (recursive), - [`adjustRows()`](#adjustRages) - -Like [`attemptPageShow`](#attemptPageShow) but for rows. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/clearViewer.md b/legacy/docs/content/documentation/code/javascript/_private_functions/clearViewer.md deleted file mode 100644 index 9451ff0d..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/clearViewer.md +++ /dev/null @@ -1,7 +0,0 @@ -* **Parameters**: 0 -* **Return type**: none -* **Called by**: [`loadDocument()`](#loadDocument), [`loadGrid()`](#loadGrid) - -This function needs to be called every time the viewer is reloaded, to ensure -that certain settings are reset, that the viewer is emptied, and that all the -timeouts are cleared. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/createToolbar.md b/legacy/docs/content/documentation/code/javascript/_private_functions/createToolbar.md deleted file mode 100644 index e2edba1d..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/createToolbar.md +++ /dev/null @@ -1,17 +0,0 @@ -{% load extras %} - -* **Parameters**: 0 -* **Return type**: object -* **Called by**: [`setupViewer()`](#setupViewer) (within the `success` callback - function) - -Creates and inserts the HTML needed for the toolbar into the document, and -binds any necessary event handlers. Returns an object containing various -functions related to the toolbar, which is then saved as -{% settings_link "toolbar" %} within `setupViewer()`. These functions can be -accessed from the `settings.toolbar` object. For example, to update the current -page label in the toolbar: - -```javascript -settings.toolbar.updateCurrentPage(); -``` diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/deletePage.md b/legacy/docs/content/documentation/code/javascript/_private_functions/deletePage.md deleted file mode 100644 index c6e418e1..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/deletePage.md +++ /dev/null @@ -1,9 +0,0 @@ -* **Parameters**: 1 - * **pageIndex**: the index of the page we want to delete -* **Return type**: none -* **Called by**: [`attemptPageHide()`](#attemptPageHide) - -Deletes the div for a page from the DOM. The child elements of the container -are removed (using jQuery's [`empty()`](http://api.jquery.com/empty/)) before -the container itself is removed (using jQuery's -[`remove()`](http://api.jquery.com/remove/)) for performance reasons. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/deleteRow.md b/legacy/docs/content/documentation/code/javascript/_private_functions/deleteRow.md deleted file mode 100644 index 476540d1..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/deleteRow.md +++ /dev/null @@ -1,6 +0,0 @@ -* **Parameters**: 1 - * **rowIndex**: the index of the row we want to delete -* **Return type**: boolean -* **Called by**: [`attemptRowHide()`](#attemptRowHide) - -Deletes a row from the DOM. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/documentScroll.md b/legacy/docs/content/documentation/code/javascript/_private_functions/documentScroll.md deleted file mode 100644 index 42b29eb0..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/documentScroll.md +++ /dev/null @@ -1,15 +0,0 @@ -{% load extras %} - -* **Parameters**: 0 -* **Return type**: none -* **Called by**: [`loadDocument()`](#loadDocument) - -Helper function to scroll to the correct page after loading the viewer in -document view. After the initial load, the page to scroll to is determined by -first by the {% link "hash parameter" %}, and if that isn't specified or is -invalid, by {% settings_link "goDirectlyTo" %}. After a zoom event, the page to -scroll to is the page that was being viewed directly prior to the zoom event, -or the area of the page that was double-clicked if the zoom was triggered by a -double-click event. After switching into document view from grid view or -entering or existing fullscreen mode, the page to scroll to is the last page -that was being viewed. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/executeCallback.md b/legacy/docs/content/documentation/code/javascript/_private_functions/executeCallback.md deleted file mode 100644 index c09c6ec1..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/executeCallback.md +++ /dev/null @@ -1,17 +0,0 @@ -* **Parameters**: 1 or more - * **callback**: a callback function - * other arguments: arguments to pass to the callback function (0 or more) -* **Return type**: boolean -* **Called by**: [`adjustPages()`](#adjustPages), - [`adjustRows()`](#adjustRows), [`loadDocument()`](#loadDocument), - [`handleModeChange()`](#handleModeChange), - [`handleViewChange()`](#handleViewChange), - [`initPlugins()`](#initPlugins), [`setupViewer()`](#setupViewer), - [`this.destroy()`](#thisDestroy) - -Executes the callback with the document viewer instance as context (so -referring to `this` within the callback function will give the diva instance). -Any arguments following the callback function will be passed directly to the -callback function. If the `callback` parameter is a function that can be -executed, then it will be executed and the `executeCallback` function will -return true; otherwise, it will return false. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/getCurrentURL.md b/legacy/docs/content/documentation/code/javascript/_private_functions/getCurrentURL.md deleted file mode 100644 index b6f823aa..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/getCurrentURL.md +++ /dev/null @@ -1,9 +0,0 @@ -* **Parameters**: 0 -* **Return type**: string -* **Called by**: [`createToolbar()`](#createToolbar) (in the event handler for - the link icon), [`this.getCurrentURL()`](#this.getCurrentURL) - -Returns the full URL (including the protocol) to the current state of the -document viewer, with the state encoded in the hash (see -[`getURLHash()`](#getURLHash)). This URL is what is shown when the link icon is -clicked. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/getPageData.md b/legacy/docs/content/documentation/code/javascript/_private_functions/getPageData.md deleted file mode 100644 index 426e7985..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/getPageData.md +++ /dev/null @@ -1,16 +0,0 @@ -* **Parameters**: 2 - * **pageIndex**: the index of the page to get data about - * **attribute**: the name of the attribute, as returned by the divaserve - script. Limited to the attributes that depend on the current zoom level - [`settings.zoomLevel`](#zoomLevel): `c` (number of columns), `r` (number - of rows), `h` (height), `w` (width). -* **Return type**: integer of float (depending on the requested attribute, and - which divaserve script is used) -* **Called by**: [`isPageVisible()`](#isPageVisible), - [`loadPage()`](#loadPage), [`pageAboveViewport()`](#pageAboveViewport), - [`loadoadRow()`](#loadRow), [`setCurrentPage()`](#setCurrentPage), - [`loadDocument()`](#loadDocument), - [`handleModeChange()`](#handleModeChange) - -A shortcut for accessing -`settings.pages[pageIndex]['d'][settings.zoomLevel][attribute]`. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/getPageIndex.md b/legacy/docs/content/documentation/code/javascript/_private_functions/getPageIndex.md deleted file mode 100644 index 3a7d6b01..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/getPageIndex.md +++ /dev/null @@ -1,10 +0,0 @@ -* **Parameters**: 1 - * **filename**: the filename corresponding to the page whose index we need - (e.g. `bm_001.tif`) -* **Return type**: integer -* **Called by**: [`setupViewer()`](#setupViewer), - [`this.gotoPageByName()`](#this.gotoPageByName), - [`this.setState`](#this.setState) - -Returns the index of the page whose filename is equal to the filename -parameter. If no page is found, -1 is returned. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/getState.md b/legacy/docs/content/documentation/code/javascript/_private_functions/getState.md deleted file mode 100644 index 9ab04768..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/getState.md +++ /dev/null @@ -1,27 +0,0 @@ -* **Parameters**: 0 -* **Return type**: object -* **Called by**: [`getURLHash()`](#getURLHash), - [`this.getState()`](#this.getState) - -Returns an object indicating the state of the document viewer. This is used -primarily for building the URL hash (shown when clicking the link icon). The -state object returned by this function (via {% public_link "getState" %} can be -passed to [`this.setState`](#this.setState) for another diva.js instance in -order to synchronise two viewers. - -The "state" object has the following key-value pairs: - -* `f`: true or false (whether or not it's in fullscreen mode) -* `g`: true or false (whether or not it's in grid view) -* `z`: current zoom level (e.g., 2) -* `n`: current number of pages per row (e.g., 5) -* `i`: if {% settings_link "enableFilename" %} is set, the filename of the - current page; otherwise, false -* `p`: if {% settings_link "enableFilename" %} is false, the number (1-indexed) - of the current page; otherwise, false -* `y`: if not in grid view, the vertical offset from the current page (see - {% private_link "getYOffset" %}); otherwise, false -* `x`: if not in grid view, the horizontal offset from the current page (see - {% private_link "getXOffset" %}); otherwise, false -* `h`: if not in fullscreen mode, the height of the view; else, false -* `w`: if not in fullscreen mode, the width of the viewer; else, false diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/getURLHash.md b/legacy/docs/content/documentation/code/javascript/_private_functions/getURLHash.md deleted file mode 100644 index c57d6584..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/getURLHash.md +++ /dev/null @@ -1,8 +0,0 @@ -* **Parameters**: 0 -* **Return type**: string -* **Called by**: [`getCurrentURL()`](#getCurrentURL), - [`this.getURLHash()`](#this.getURLHash) - -Builds the URL hash (looks something like `#foo=bar&something=1`) based on the -state object returned by [`getState()`](#getState). Only attributes of the -state that are not explicitly set to `false` are included. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/getValidPagesPerRow.md b/legacy/docs/content/documentation/code/javascript/_private_functions/getValidPagesPerRow.md deleted file mode 100644 index 705a188a..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/getValidPagesPerRow.md +++ /dev/null @@ -1,10 +0,0 @@ -{% load extras %} - -* **Parameter**: 1 - * **pagesPerRow**: a zoom level that may or may not be valid -* **Return type**: integer -* **Called by**: [`loadGrid()`](#loadGrid), - [`handleGrid()`](#handleGrid) - -If the argument is a valid number of pages per row, then it returns that value; -otherwise, it returns {% settings_link "maxPagesPerRow" %}. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/getValidZoomLevel.md b/legacy/docs/content/documentation/code/javascript/_private_functions/getValidZoomLevel.md deleted file mode 100644 index 57ed56da..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/getValidZoomLevel.md +++ /dev/null @@ -1,10 +0,0 @@ -{% load extras %} - -* **Parameter**: 1 - * **zoomLevel**: a zoom level that may or may not be valid -* **Return type**: integer -* **Called by**: [`loadDocument()`](#loadDocument), - [`handleZoom()`](#handleZoom) - -If the argument is a valid zoom level, then it returns that zoom level; -otherwise, it returns {% settings_link "minZoomLevel" %}. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/getXOffset.md b/legacy/docs/content/documentation/code/javascript/_private_functions/getXOffset.md deleted file mode 100644 index 217bc057..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/getXOffset.md +++ /dev/null @@ -1,9 +0,0 @@ -* **Parameters**: 0 -* **Return type**: integer -* **Called by**: [`getState()`](#getState) - -Returns the amount of horizontal scroll between the centre of the current page and -the centre of the viewport. A negative number indicates that the centre of the -viewport is to the left of the centre of page. - -Used for more precise horizontal scrolling in document view. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/getYOffset.md b/legacy/docs/content/documentation/code/javascript/_private_functions/getYOffset.md deleted file mode 100644 index 9070ab0a..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/getYOffset.md +++ /dev/null @@ -1,9 +0,0 @@ -* **Parameters**: 0 -* **Return type**: integer -* **Called by**: [`getState()`](#getState) - -Returns the amount of vertical scroll between the top of the current page and -the top of the viewport. A negative number indicates that the top of the -viewport is _above_ the top of the page. - -Used for more precise vertical scrolling in document view. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/gotoPage.md b/legacy/docs/content/documentation/code/javascript/_private_functions/gotoPage.md deleted file mode 100644 index e1c4779c..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/gotoPage.md +++ /dev/null @@ -1,17 +0,0 @@ -{% load extras %} - -* **Parameters**: 3 - * **pageIndex**: the index of the page we wish to jump to - * **verticalOffset**: the amount of vertical scroll, in pixels, from the - top of the page to the location we wish to jump to - * **horizontalOffset**: the amount of horizontal scroll, in pixels, from the - horizontal centre of the page to the location we wish to jump to -* **Return type**: none -* **Called by**: [`documentScroll()`](#documentScroll), - [`createToolbar`](#createToolbar) (in the submit handler for the "Go to page" - form, if we're in document view), [`this.gotoPage()`](#this.gotoPage), - [`this.gotoPageByName`](#this.gotoPageByName) - -Jumps to the location specified by the vertical and horizontal offsets relative -to the desired page. Sets {% settings_link "currentPageIndex" %} to the index -of this page. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/gotoRow.md b/legacy/docs/content/documentation/code/javascript/_private_functions/gotoRow.md deleted file mode 100644 index 11a111e3..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/gotoRow.md +++ /dev/null @@ -1,12 +0,0 @@ -{% load extras %} - -* **Parameters**: 1 - * **rowIndex**: the index of the row we wish to jump to -* **Return type**: none -* **Called by**: [`gridScroll()`](#gridScroll), - [`createToolbar()`](#createToolbar) (in the submithandler for the "Go to - page" form, if we're in grid view - -Jumps to the specified row. At this time, it is not possible to specify a -particular location relative to a row. Sets -{% settings_link "currentRowIndex" %} to the index of this row. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/gridScroll.md b/legacy/docs/content/documentation/code/javascript/_private_functions/gridScroll.md deleted file mode 100644 index 4ccbeabf..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/gridScroll.md +++ /dev/null @@ -1,11 +0,0 @@ -{% load extras %} - -* **Parameters**: 0 -* **Return type**: none -* **Called by**: [`loadGrid()`](#loadGrid) - -Helper function to scroll to the correct row after loading the viewer in -grid view. After the initial load, the page to scroll to is determined by -first by the {% link "hash parameter" %}, and if that isn't specified or is -invalid, by {% settings_link "goDirectlyTo" %}. In all cases, the viewer will -attempt to preserve the page that was last being viewed. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/handleDocumentDoubleClick.md b/legacy/docs/content/documentation/code/javascript/_private_functions/handleDocumentDoubleClick.md deleted file mode 100644 index 9e77ec2c..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/handleDocumentDoubleClick.md +++ /dev/null @@ -1,8 +0,0 @@ -* **Parameters**: 1 - * **event**: the jQuery event object for the double-click event -* **Return type**: none -* **Called by**: [`handleEvents()`](#handleEvents) (within the event handler - for double-clicking a page) - -Handles double-click events in document view. This results in zooming in (no -control key) or out (control key pressed). diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/handleDocumentScroll.md b/legacy/docs/content/documentation/code/javascript/_private_functions/handleDocumentScroll.md deleted file mode 100644 index 746ada94..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/handleDocumentScroll.md +++ /dev/null @@ -1,12 +0,0 @@ -{% load extras %} - -* **Parameters**: 0 -* **Return type**: none -* **Called by**: [`handleEvents()`](#handleEvents) (in the event handler for - scrolling within the `.diva-outer` element; only triggered when in document - view) - -Called any time the user scrolls while in document view. Updates -{% settings_link "topScrollSoFar" %} and -{% settings_link "previousTopScroll" %}, and calls -[`adjustPages()`](#adjustPages). diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/handleEvents.md b/legacy/docs/content/documentation/code/javascript/_private_functions/handleEvents.md deleted file mode 100644 index 06c9acb7..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/handleEvents.md +++ /dev/null @@ -1,6 +0,0 @@ -* **Parameters**: 0 -* **Return type**: none -* **Called by**: [`init()`](#init) - -Binds most of the event handlers needed for the document viewer (the rest can -be found in [`createToolbar()`](#createToolbar). diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/handleGrid.md b/legacy/docs/content/documentation/code/javascript/_private_functions/handleGrid.md deleted file mode 100644 index 307b97fc..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/handleGrid.md +++ /dev/null @@ -1,18 +0,0 @@ -{% load extras %} - -* **Parameters**: 1 - * **newValue**: the desired number of pages per row -* **Return type**: boolean -* **Called by**: [`createToolbar()`](#createToolbar) (within the `slide` and - `change` event handlers for the zoom slider) - -Called when we're already in grid view and we need to change the number of -pages per row. - -Takes care of validating the desired number of pages per row, updating -{% settings_link "oldPagesPerRow" %} and {% settings_link "pagesPerRow" %}, -updating the slider, and loading the grid with the desired number of pages per -row. - -If the desired number of pages per row is invalid, this function returns -`false`; otherwise, it returns `true`. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/handleGridScroll.md b/legacy/docs/content/documentation/code/javascript/_private_functions/handleGridScroll.md deleted file mode 100644 index 5905acf4..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/handleGridScroll.md +++ /dev/null @@ -1,12 +0,0 @@ -{% load extras %} - -* **Parameters**: 0 -* **Return type**: none -* **Called by**: [`handleEvents()`](#handleEvents) (in the event handler for - scrolling within the `.diva-outer` element; only triggered when in grid - view) - -Called any time the user scrolls while in grid view. Updates -{% settings_link "topScrollSoFar" %} and -{% settings_link "previousTopScroll" %}, and calls -[`adjustRows()`](#adjustRows). diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/handleModeChange.md b/legacy/docs/content/documentation/code/javascript/_private_functions/handleModeChange.md deleted file mode 100644 index 26c8aa79..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/handleModeChange.md +++ /dev/null @@ -1,15 +0,0 @@ -{% load extras %} - -* **Parameters**: 1 - * **changeView**: a boolean indicating whether or not we also need to - change the view (between grid and document) -* **Return type**: none -* **Called by**: [`toggleFullscreenIcon()`](#toggleFullscreenIcon), - [`setupViewer()`](#setupViewer), [`this.setState()`](#this.setState) - -Called whenever we need to enter or exit fullscreen mode (after -{% settings_link "inFullscreen" %} has been updated to the desired value). This -takes care of saving some offsets required to scroll to the same place after -changing the mode, updating the toolbar, resetting the dimensions, changing the -view if necessary (depending on the `changeView` parameter) and executing the -{% settings_link "onModeToggle" %} callback. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/handlePinchZoom.md b/legacy/docs/content/documentation/code/javascript/_private_functions/handlePinchZoom.md deleted file mode 100644 index 03553c88..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/handlePinchZoom.md +++ /dev/null @@ -1,12 +0,0 @@ -* **Parameters**: 1 - * **event**: the jQuery event object for the pinch-zoom (`gestureend`) - event -* **Return type**: none -* **Called by**: [`handleEvents()`](#handleEvents) (within the event handler - for `gestureend`) - -Handles pinch-zooming on mobile devices. If the gesture appears to be a zoom-in -event, a zoom-in level will be triggered; if it appears to be a zoom-out event, -a zoom-out event will be triggered (for a difference of one zoom level). If the -user is initially in grid mode, a pinch-zoom event will cause the viewer to -enter document view. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/handleViewChange.md b/legacy/docs/content/documentation/code/javascript/_private_functions/handleViewChange.md deleted file mode 100644 index 1b6e7147..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/handleViewChange.md +++ /dev/null @@ -1,13 +0,0 @@ -{% load extras %} - -* **Parameters**: 0 -* **Return type**: none -* **Called by**: [`handleModeChange()`](#handleModeChange), - [`toggleGridIcon()`](#toggleGridIcon), - [`handleGridDoubleClick()`](#handleGridDoubleClick), - [`handleEvents()`](#handleEvents), [`this.setState()`](#this.setState) - -Called whenever we need to switch between grid and document grid or vice versa -(after {% settings_link "inGrid" %} has been updated to the desired value). -This takes care of updating the slider and icon in the toolbar, loading the -viewer, and executing the {% settings_link "onViewToggle" %} callback. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/handleZoom.md b/legacy/docs/content/documentation/code/javascript/_private_functions/handleZoom.md deleted file mode 100644 index 49571623..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/handleZoom.md +++ /dev/null @@ -1,19 +0,0 @@ -{% load extras %} - -* **Parameters**: 1 - * **zoomLevel**: the desired zoom level -* **Return type**: boolean -* **Called by**: [`handleDocumentDoubleClick()`](#handleDocumentDoubleClick), - [`handlePinchZoom()`](#handlePinchZoom), [`createToolbar()`](#createToolbar) - (within the `slide` and `change` event handlers for the zoom slider), - [`this.setZoomLevel()`](#this.setZoomLevel) - -Called when we're already in document view and we need to change the zoom -level. - -Takes care of validating the desired zoom level, updating -{% settings_link "oldZoomLevel" %} and {% settings_link "zoomLevel" %} -updating the slider, and loading the document at the desired zoom level. - -If the desired zoom level is invalid, this function returns `false`; otherwise, -it returns `true`. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/hideThrobber.md b/legacy/docs/content/documentation/code/javascript/_private_functions/hideThrobber.md deleted file mode 100644 index 7a2e38e2..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/hideThrobber.md +++ /dev/null @@ -1,11 +0,0 @@ -{% load extras %} - -* **Parameters**: 0 -* **Return type**: none -* **Called by**: [`setupViewer`](#setupViewer) (in the `error` and `success` - callback functions) - -Hides the throbber (loading indicator icon), which is first created at the -beginning of `setupViewer` and is only shown if the initial asynchronous -request takes longer than the number of milliseconds defined in -{% settings_link "throbberTimeout" %}. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/horizontallyInViewport.md b/legacy/docs/content/documentation/code/javascript/_private_functions/horizontallyInViewport.md deleted file mode 100644 index af123fcb..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/horizontallyInViewport.md +++ /dev/null @@ -1,10 +0,0 @@ -* **Parameters**: 2 - * **left**: the distance between the left edge of the inner panel - ([`.diva-inner`](#MONKEY)) and the left edge of the tile in question - * **right**: the distance between the left edge of the inner panel and the - right edge of the tile in question -* **Return type**: boolean -* **Called by**: [`isTileVisible()`](#isTileVisible) - -Checks if the tile whose left and right edge coordinates are given is -horizontally within the viewport (the document viewer panel) or not. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/init.md b/legacy/docs/content/documentation/code/javascript/_private_functions/init.md deleted file mode 100644 index 3a629d57..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/init.md +++ /dev/null @@ -1,9 +0,0 @@ -* **Parameters**: 0 -* **Return type**: none -* **Called by**: the body of the `Diva` function (immediately upon - instantiation of the object) - -Stores and calculates some initial values, creates some wrapper elements, -checks the hash parameters and then calls [`setupViewer()`](#setupViewer), -[`initPlugins()`](#initPlugins) and [`handleEvents()`](#handleEvents) to take -care of everything else. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/initPlugins.md b/legacy/docs/content/documentation/code/javascript/_private_functions/initPlugins.md deleted file mode 100644 index 4b082f21..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/initPlugins.md +++ /dev/null @@ -1,11 +0,0 @@ -{% load extras %} - -* **Parameters**: 1 -* **Return type**: none -* **Called by**: [`init()`](#init) - -Adds all the enabled plugins to {% settings_link "plugins" %} and takes care -of calling the `init()` function for each. If the plugin defines a -`handleClick()` function, then the HTML for a div containing that plugin's icon -is added to {% settings_link "pageTools" %}, and the click event is delegated -to `handleClick()`. See the [plugin documentation](MONKEY) for more information. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/isPageLoaded.md b/legacy/docs/content/documentation/code/javascript/_private_functions/isPageLoaded.md deleted file mode 100644 index 55d6a1fd..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/isPageLoaded.md +++ /dev/null @@ -1,8 +0,0 @@ -* **Parameters**: 1 - * **pageIndex**: the index of the page whose presence we want to check -* **Return type**: boolean -* **Called by**: [`loadPage()`](#loadPage) - -Checks if a page is present in the DOM (i.e. if there is a div with the id -`?-diva-page-#` where ? is the number of the document viewer and # is -`pageIndex`). Used to prevent a page from being inserted multiple times. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/isPageValid.md b/legacy/docs/content/documentation/code/javascript/_private_functions/isPageValid.md deleted file mode 100644 index a90866da..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/isPageValid.md +++ /dev/null @@ -1,12 +0,0 @@ -* **Parameters**: 1 - * **pageIndex**: the page index whose validity we want to check -* **Return type**: boolean -* **Called by**: [`attemptPageShow()`](#attemptPageShow), - [`attemptPageHide()`](#attemptPageHide), [`loadRow()`](#loadRow), - [`createToolbar()`](#createToolbar), [`setupViewer()`](#setupViewer), - [`this.gotoPage()`](#this.gotoPage), - [`this.gotoPageByName()`](#this.gotoPageByName), - [`this.setState()`](#this.setState) - -Returns true if the page index is valid (between 0, inclusive, and the number -of pages, exclusive). diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/isPageVisible.md b/legacy/docs/content/documentation/code/javascript/_private_functions/isPageVisible.md deleted file mode 100644 index f3337a3f..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/isPageVisible.md +++ /dev/null @@ -1,9 +0,0 @@ -* **Parameters**: 1 - * **pageIndex**: the index of the page whose visibility we want to check -* **Return type**: boolean -* **Called by**: [`loadPage()`](#loadPage), - [`attemptPageShow()`](#attemptPageShow), [`adjustPages()`](#adjustPages), - [`loadDocument()`](#loadDocument) - -Returns true if the page is in or near the viewport (and thus should be -loaded). diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/isRowLoaded.md b/legacy/docs/content/documentation/code/javascript/_private_functions/isRowLoaded.md deleted file mode 100644 index 14676400..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/isRowLoaded.md +++ /dev/null @@ -1,6 +0,0 @@ -* **Parameters**: 1 - * **rowIndex**: the index of the row whose presence we want to check -* **Return type**: boolean -* **Called by**: [`loadRow()`](#loadRow) - -Like [`isPageLoaded()`](#isPageLoaded) but for rows. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/isRowValid.md b/legacy/docs/content/documentation/code/javascript/_private_functions/isRowValid.md deleted file mode 100644 index aaf98492..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/isRowValid.md +++ /dev/null @@ -1,9 +0,0 @@ -* **Parameters**: 1 - * **rowIndex**: the row index whose validity we want to check -* **Return type**: boolean -* **Called by**: [`attemptRowShow()`](#attemptRowShow), - [`attemptRowHide()`](#attemptRowHide), [`setCurrentRow`](#setCurrentRow) - -Returns true if the row index is valid (between 0, inclusive, and the number -of rows, exclusive). The number of rows for a particular number of pages per -row is determined in [`loadGrid()`](#loadGrid). diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/isRowVisible.md b/legacy/docs/content/documentation/code/javascript/_private_functions/isRowVisible.md deleted file mode 100644 index bb7dad3c..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/isRowVisible.md +++ /dev/null @@ -1,7 +0,0 @@ -* **Parameters**: 1 - * **rowIndex**: the row index whose visibility we want to check -* **Return type**: boolean -* **Called by**: [`attemptRowShow()`](#attemptRowShow), - [`addPageToQueue()`](#addPageToQueue), [`loadGrid()`](#loadGrid) - -Like [`isPageVisible()`](#isPageVisible) but for rows. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/isTileLoaded.md b/legacy/docs/content/documentation/code/javascript/_private_functions/isTileLoaded.md deleted file mode 100644 index 6fbe1f63..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/isTileLoaded.md +++ /dev/null @@ -1,11 +0,0 @@ -{% load extras %} - -* **Parameters**: 2 - * **pageIndex**: index of the page this tile is part of - * **tileIndex**: index of this tile (starts from 0) -* **Return type**: boolean -* **Called by**: [`loadPage()`](#loadPage) - -Checks if a tile has been loaded into the DOM. Note that tiles are only loaded -if they are both vertically and horizontally within the viewport (taking -{% settings_link "viewportMargin" %} into account). diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/isTileVisible.md b/legacy/docs/content/documentation/code/javascript/_private_functions/isTileVisible.md deleted file mode 100644 index 8b3ab1a4..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/isTileVisible.md +++ /dev/null @@ -1,9 +0,0 @@ -* **Parameters**: 3 - * **pageIndex**: index of the page this tile is part of - * **tileRow**: index of this tile's row (starts from 0) - * **tileCol**: index of this tile's col (starts from 0) -* **Return type**: boolean -* **Called by**: [`loadPage()`](#loadPage) - -Checks if the specified tile is both horizontally and vertically in the -viewport. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/loadDocument.md b/legacy/docs/content/documentation/code/javascript/_private_functions/loadDocument.md deleted file mode 100644 index 8e102f21..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/loadDocument.md +++ /dev/null @@ -1,9 +0,0 @@ -* **Parameters**: 0 -* **Return type**: none -* **Called by**: [`loadViewer()`](#loadViewer), [`handleZoom`](#handleZoom) - -This is called every time we need to reload the pages while in document view -(e.g. after a zoom event, or changing mode, or resizing the window). Takes care -of clearing the viewer, calculating padding and other dimensions, loading the -first few pages, executing any zoom-related callbacks and scrolling to the -correct page afterwards. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/loadGrid.md b/legacy/docs/content/documentation/code/javascript/_private_functions/loadGrid.md deleted file mode 100644 index 2f7649f8..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/loadGrid.md +++ /dev/null @@ -1,8 +0,0 @@ -* **Parameters**: 0 -* **Return type**: none -* **Called by**: [`loadViewer()`](#loadViewer), [`handleGrid`](#handleGrid) - -This is called every time we need to reload the pages while in grid view -(e.g. after a zoom event, or changing mode, or resizing the window). Takes care -of clearing the viewer, calculating padding- and row-related dimensions, -loading the first few rows, and scrolling to the correct row afterwards. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/loadPage.md b/legacy/docs/content/documentation/code/javascript/_private_functions/loadPage.md deleted file mode 100644 index ec7181de..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/loadPage.md +++ /dev/null @@ -1,18 +0,0 @@ -* **Parameters**: 1 - * **pageIndex**: the index of the page we want to load -* **Return type**: none -* **Called by**: [`attemptPageShow()`](#attemptPageShow), - [`adjustPages()`](#adjustPages), [`loadDocument()`](#loadDocument) - -If a page is not present in the DOM (as determined by -[`isPageLoaded()`](#isPageLoaded)), then this function will create a div for -the page and load all of its tiles that are in the viewport (or near it - see -[`settings.viewportMargin`](#viewportMargin)). The div for the page is -appended first, and the tiles are appended after a timeout (specified in -[`settings.pageLoadTimeout`](#pageLoadTimeout) to prevent excessive -unnecessary tile loading when scrolling quickly through the document. - -If a page has already been inserted into the DOM (as determined by -[`isPageLoaded()`](#isPageLoaded)) but not all of its tiles have been loaded, -then this function will attempt to load the remaining tiles (depending on -whether or not they are in or near the viewport). diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/loadRow.md b/legacy/docs/content/documentation/code/javascript/_private_functions/loadRow.md deleted file mode 100644 index 5505f700..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/loadRow.md +++ /dev/null @@ -1,10 +0,0 @@ -* **Parameters**: 1 - * **rowIndex**: the index of the row we want to load -* **Return type**: none -* **Called by**: [`attemptRowShow()`](#attemptRowShow), - [`loadGrid()`](#loadGrid) - -If a row is not present in the DOM (as determined by -[`isRowLoaded()`](#isRowLoaded)), then this function will create a div for -the row and load all of its pages after checking that they are still -in the viewport after a brief timeout (see diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/loadViewer.md b/legacy/docs/content/documentation/code/javascript/_private_functions/loadViewer.md deleted file mode 100644 index c4f00092..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/loadViewer.md +++ /dev/null @@ -1,13 +0,0 @@ -{% load extras %} - -* **Parameters**: 0 -* **Return type**: none -* **Called by**: [`handleModeChange()`](#handleModeChange), - [`handleViewChange()`](#handleViewChange), [`handleEvents()`](#handleEvents) - (in the event handler for the `orientationchange` event, triggered when - rotating a touch device, and in the event handler for the window resizing), - [`setupViewer()`](#setupViewer), [`this.setState`](#this.setState), - [`this.resize`](#this.resize) - -Shortcut function to load either grid view or document view depending on the -value of {% settings_link "inGrid" %}. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/pageAboveViewport.md b/legacy/docs/content/documentation/code/javascript/_private_functions/pageAboveViewport.md deleted file mode 100644 index a2d05c6a..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/pageAboveViewport.md +++ /dev/null @@ -1,10 +0,0 @@ -* **Parameters**: 1 - * **pageIndex**: the index of the page we want to check -* **Return type**: boolean -* **Called by**: [`attemptPageShow()`](#attemptPageShow), - [`attemptPageHide()`](#attemptPageHide) - -Checks if the bottom of a page is above the viewport. This is used when we're -scrolling through a document and we want to determine if we should keep looping -through the pages or if we've reached the last page that we need to show (or -hide). diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/pageBelowViewport.md b/legacy/docs/content/documentation/code/javascript/_private_functions/pageBelowViewport.md deleted file mode 100644 index 0eefd60d..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/pageBelowViewport.md +++ /dev/null @@ -1,8 +0,0 @@ -* **Parameters**: 1 - * **pageIndex**: the index of the page we want to check -* **Return type**: boolean -* **Called by**: [`attemptPageShow()`](#attemptPageShow), - [`attemptPageHide()`](#attemptPageHide) - -Checks if the top of a page is below the viewport. See -[`pageAboveViewport`](#pageAboveViewport). diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/resizeViewer.md b/legacy/docs/content/documentation/code/javascript/_private_functions/resizeViewer.md deleted file mode 100644 index 6ad784f3..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/resizeViewer.md +++ /dev/null @@ -1,12 +0,0 @@ -{% load extras %} - -* **Parameters**: 2 - * **newWidth**: the desired width of the document viewer pane - * **newHeight**: the desired height of the document viewerpane -* **Return type**: none -* **Called by**: [`init()`](#init), [`this.setState()`](#this.setState), - [`this.resize()`](#this.resize) - -Resizes the document viewer pane to the dimensions given (if they are valid). -Takes care of updating {% settings_link "panelHeight" %} and -{% settings_link "panelWidth" %}. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/rowAboveViewport.md b/legacy/docs/content/documentation/code/javascript/_private_functions/rowAboveViewport.md deleted file mode 100644 index 863c21b1..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/rowAboveViewport.md +++ /dev/null @@ -1,7 +0,0 @@ -* **Parameters**: 1 - * **rowIndex**: the index of the row we want to check -* **Return type**: boolean -* **Called by**: [`attemptRowShow()`](#attemptRowShow), - [`attemptRowHide()`](#attemptRowHide) - -Like [`pageAboveViewport()`](#pageAboveViewport) but for rows. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/rowBelowViewport.md b/legacy/docs/content/documentation/code/javascript/_private_functions/rowBelowViewport.md deleted file mode 100644 index e309ca8c..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/rowBelowViewport.md +++ /dev/null @@ -1,7 +0,0 @@ -* **Parameters**: 1 - * **rowIndex**: the index of the row we want to check -* **Return type**: boolean -* **Called by**: [`attemptRowShow()`](#attemptRowShow), - [`attemptRowHide()`](#attemptRowHide) - -Like [`pageBelowViewport()`](#pageBelowViewport) but for rows. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/setCurrentPage.md b/legacy/docs/content/documentation/code/javascript/_private_functions/setCurrentPage.md deleted file mode 100644 index 1e08023f..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/setCurrentPage.md +++ /dev/null @@ -1,16 +0,0 @@ -{% load extras %} - -* **Parameters**: 1 - * **direction**: the direction of scroll (+1 for downwards scroll, -1 for - upwards scroll) -* **Return type**: boolean -* **Called by**: [`setCurrentPage()`](#setCurrentPage) (recursive), - [`adjustPages()`](#adjustPages) - -Updates {% settings_link "currentPageIndex" %}. The new "current" page is -determined based on the following algorithm: if the user is scrolling up, and -the current page is below the middle of the viewport, then we take the -previous page to be the new current page. If the user is scrolling down, and -the current page is below the middle of the viewport, then we take the next -page to be the new current page. This is then repeated recursively until we no -longer need to change the current page. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/setCurrentRow.md b/legacy/docs/content/documentation/code/javascript/_private_functions/setCurrentRow.md deleted file mode 100644 index b08bb514..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/setCurrentRow.md +++ /dev/null @@ -1,8 +0,0 @@ -* **Parameters**: 1 - * **direction**: the direction of scroll (+1 for downwards scroll, -1 for - upwards scroll) -* **Return type**: boolean -* **Called by**: [`setCurrentRow()`](#setCurrentRow) (recursive), - [`adjustRows()`](#adjustRows) - -Like [`setCurrentPage()`](#setCurrentPage), but for rows. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/setupViewer.md b/legacy/docs/content/documentation/code/javascript/_private_functions/setupViewer.md deleted file mode 100644 index 71a42205..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/setupViewer.md +++ /dev/null @@ -1,8 +0,0 @@ -* **Parameters** 0 -* **Return type**: none -* **Called by**: [`init()`](#init) - -Sends the asynchronous request to fetch the data from the divaserve script, -stores the results, adjusts the dimensions of the document viewer pane if -necessary, creates the toolbar and other supplementary elements, and loads the -viewer in its initial mode and view. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/toggleFullscreenIcon.md b/legacy/docs/content/documentation/code/javascript/_private_functions/toggleFullscreenIcon.md deleted file mode 100644 index 3e39d3ba..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/toggleFullscreenIcon.md +++ /dev/null @@ -1,14 +0,0 @@ -{% load extras %} - -* **Parameters**: 0 -* **Return type**: none -* **Called by**: [`handleEvents()`](#handleEvents) (in the event handler for - clicking on the fullscreen icon), [`this.toggleMode()`](#this.toggleMode), - [`this.enterFullscreen()`](#this.enterFullscreen), - [`this.leaveFullscreen()`](#this.leaveFullscreen) - -Stores the current page in {% settings_link "goDirectlyTo" %} so that we can -jump directly to that page afterwards, updates -{% settings_link "inFullscreen" %}, and calls -[`handleModeChange()`](#handleModeChange) with the value of the `changeView` -parameter set to false, triggering a mode toggle without a view toggle. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/toggleGridIcon.md b/legacy/docs/content/documentation/code/javascript/_private_functions/toggleGridIcon.md deleted file mode 100644 index bc90d0a1..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/toggleGridIcon.md +++ /dev/null @@ -1,8 +0,0 @@ -* **Parameters**: 1 - * **event**: the jQuery event object for the double-click event -* **Return type**: none -* **Called by**: [`handleEvents()`](#handleEvents) (within the event handler - for double-clicking a row) - -Handles double-click events in grid view. Causes the user to leave grid view -and view the page in document view. diff --git a/legacy/docs/content/documentation/code/javascript/_private_functions/verticallyInViewport.md b/legacy/docs/content/documentation/code/javascript/_private_functions/verticallyInViewport.md deleted file mode 100644 index 3c48e4b9..00000000 --- a/legacy/docs/content/documentation/code/javascript/_private_functions/verticallyInViewport.md +++ /dev/null @@ -1,12 +0,0 @@ -* **Parameters**: 2 - * **top**: the distance between the top edge of the inner panel - ([`.diva-inner`](#MONKEY)) and the top edge of the tile in question - * **bottom**: the distance between the top edge of the inner panel and the - bottom edge of the tile in question -* **Return type**: boolean -* **Called by**: [`isTileVisible()`](#isTileVisible), - [`isPageVisible()`](#isPageVisible), [`isRowVisible()`](#isRowVisible), - [`this.inViewport()`](#this.inViewport) - -Checks if the item (tile, page, row, etc) whose top and bottom edge coordinates -are given is vertically within the viewport (the document viewer panel) or not. diff --git a/legacy/docs/content/documentation/code/javascript/_public_functions/this.destroy.md b/legacy/docs/content/documentation/code/javascript/_public_functions/this.destroy.md deleted file mode 100644 index c0846214..00000000 --- a/legacy/docs/content/documentation/code/javascript/_public_functions/this.destroy.md +++ /dev/null @@ -1,6 +0,0 @@ -* **Parameters**: 0 -* **Return type**: none - -"Destroys" this diva instance and any associated plugins by removing all of its -elements from the DOM as well as any applied styles. Also calls the destroy -function for all enabled plugins. Mainly used for unit testing. diff --git a/legacy/docs/content/documentation/code/javascript/_public_functions/this.enterFullscreen.md b/legacy/docs/content/documentation/code/javascript/_public_functions/this.enterFullscreen.md deleted file mode 100644 index 7e5d2b66..00000000 --- a/legacy/docs/content/documentation/code/javascript/_public_functions/this.enterFullscreen.md +++ /dev/null @@ -1,7 +0,0 @@ -* **Parameters**: 0 -* **Return type**: boolean (false if already in fullscreen mode, true - otherwise) - -Enter fullscreen mode. - -Works even if {% settings_link "enableFullscreen" %} is set to false. diff --git a/legacy/docs/content/documentation/code/javascript/_public_functions/this.enterGrid.md b/legacy/docs/content/documentation/code/javascript/_public_functions/this.enterGrid.md deleted file mode 100644 index e006a915..00000000 --- a/legacy/docs/content/documentation/code/javascript/_public_functions/this.enterGrid.md +++ /dev/null @@ -1,4 +0,0 @@ -* **Parameters**: 0 -* **Return type**: boolean (false if already in grid view, true otherwise) - -Enter grid view if not already in grid view. diff --git a/legacy/docs/content/documentation/code/javascript/_public_functions/this.getCurrentHash.md b/legacy/docs/content/documentation/code/javascript/_public_functions/this.getCurrentHash.md deleted file mode 100644 index 021bd7d2..00000000 --- a/legacy/docs/content/documentation/code/javascript/_public_functions/this.getCurrentHash.md +++ /dev/null @@ -1,5 +0,0 @@ -* **Parameters**: 0 -* **Return type**: string - -Returns the hash part only of the URL of the document viewer at its current -state, without the leading `#`. See {% private_link "getURLHash" %}. diff --git a/legacy/docs/content/documentation/code/javascript/_public_functions/this.getCurrentPage.md b/legacy/docs/content/documentation/code/javascript/_public_functions/this.getCurrentPage.md deleted file mode 100644 index 838da883..00000000 --- a/legacy/docs/content/documentation/code/javascript/_public_functions/this.getCurrentPage.md +++ /dev/null @@ -1,5 +0,0 @@ -* **Parameters**: 0 -* **Return type**: integer - -Returns the current page number (0-indexed). See -{% private_link "setCurrentPage" %} for details on how this is calculated. diff --git a/legacy/docs/content/documentation/code/javascript/_public_functions/this.getCurrentURL.md b/legacy/docs/content/documentation/code/javascript/_public_functions/this.getCurrentURL.md deleted file mode 100644 index 0db93bc0..00000000 --- a/legacy/docs/content/documentation/code/javascript/_public_functions/this.getCurrentURL.md +++ /dev/null @@ -1,5 +0,0 @@ -* **Parameters**: 0 -* **Return type**: string - -Returns the URL of the document viewer at its current state. -See {% private_link "getCurrentURL" %}. diff --git a/legacy/docs/content/documentation/code/javascript/_public_functions/this.getItemTitle.md b/legacy/docs/content/documentation/code/javascript/_public_functions/this.getItemTitle.md deleted file mode 100644 index d3276f8b..00000000 --- a/legacy/docs/content/documentation/code/javascript/_public_functions/this.getItemTitle.md +++ /dev/null @@ -1,4 +0,0 @@ -* **Parameters**: 0 -* **Return type**: string - -Returns the title of the document (see {% settings_link "itemTitle" %}). diff --git a/legacy/docs/content/documentation/code/javascript/_public_functions/this.getPageIndex.md b/legacy/docs/content/documentation/code/javascript/_public_functions/this.getPageIndex.md deleted file mode 100644 index 9e0a4293..00000000 --- a/legacy/docs/content/documentation/code/javascript/_public_functions/this.getPageIndex.md +++ /dev/null @@ -1,6 +0,0 @@ -* **Parameters**: 1 - * **filename**: the filename of the page whose index (0-based) we need - (e.g. `bm_001.tif`) -* **Return type**: boolean (false if the filename is invalid, true otherwise) - -Get the index of a page by its filename. diff --git a/legacy/docs/content/documentation/code/javascript/_public_functions/this.getState.md b/legacy/docs/content/documentation/code/javascript/_public_functions/this.getState.md deleted file mode 100644 index 256afe18..00000000 --- a/legacy/docs/content/documentation/code/javascript/_public_functions/this.getState.md +++ /dev/null @@ -1,5 +0,0 @@ -* **Parameters**: 0 -* **Return type**: a "state" object - -Returns an object representing the current state of this document viewer. -See {% private_link "getState" %}. diff --git a/legacy/docs/content/documentation/code/javascript/_public_functions/this.getZoomLevel.md b/legacy/docs/content/documentation/code/javascript/_public_functions/this.getZoomLevel.md deleted file mode 100644 index 5b8bb2ad..00000000 --- a/legacy/docs/content/documentation/code/javascript/_public_functions/this.getZoomLevel.md +++ /dev/null @@ -1,5 +0,0 @@ -* **Parameters**: 0 -* **Return type**: integer - -Returns the current zoom level, regardless of whether or not the current view -is grid view. diff --git a/legacy/docs/content/documentation/code/javascript/_public_functions/this.gotoPage.md b/legacy/docs/content/documentation/code/javascript/_public_functions/this.gotoPage.md deleted file mode 100644 index 43b2ac74..00000000 --- a/legacy/docs/content/documentation/code/javascript/_public_functions/this.gotoPage.md +++ /dev/null @@ -1,7 +0,0 @@ -* **Parameters**: 1 - * **pageNumber**: the number of the page to jump to (1-indexed) -* **Return type**: none - -Jump to a specific page at the current zoom level. Doesn't change view (so that -if the current view is grid view, it'll jump to the row containing the desired -page). diff --git a/legacy/docs/content/documentation/code/javascript/_public_functions/this.gotoPageByName.md b/legacy/docs/content/documentation/code/javascript/_public_functions/this.gotoPageByName.md deleted file mode 100644 index 0dbc6722..00000000 --- a/legacy/docs/content/documentation/code/javascript/_public_functions/this.gotoPageByName.md +++ /dev/null @@ -1,5 +0,0 @@ -* **Parameters**: 1 - * **filename**: the filename of the page to jump to (e.g. `bm_001.tif`) -* **Return type**: boolean (false if the filename is invalid, true otherwise) - -Jump to a page specified by its filename. diff --git a/legacy/docs/content/documentation/code/javascript/_public_functions/this.inViewport.md b/legacy/docs/content/documentation/code/javascript/_public_functions/this.inViewport.md deleted file mode 100644 index f213410f..00000000 --- a/legacy/docs/content/documentation/code/javascript/_public_functions/this.inViewport.md +++ /dev/null @@ -1,10 +0,0 @@ -* **Parameters**: 3 - * **pageNumber**: the number of the page (1-indexed) - * **topOffset**: the vertical offset from the top of the page to the top of - the element under consideration - * **height**: the height of the element under consideration -* **Return type**: boolean (true if it is visible, false otherwise) - -Used for checking if something attached to a particular page is visible in the -viewport. Useful for things like boxes for highlighting search queries, when -you don't want to display extra elements unnecessarily. diff --git a/legacy/docs/content/documentation/code/javascript/_public_functions/this.leaveFullscreen.md b/legacy/docs/content/documentation/code/javascript/_public_functions/this.leaveFullscreen.md deleted file mode 100644 index 214718cb..00000000 --- a/legacy/docs/content/documentation/code/javascript/_public_functions/this.leaveFullscreen.md +++ /dev/null @@ -1,5 +0,0 @@ -* **Parameters**: 0 -* **Return type**: boolean (true if already in fullscreen mode, false - otherwise) - -Leave fullscreen mode. diff --git a/legacy/docs/content/documentation/code/javascript/_public_functions/this.leaveGrid.md b/legacy/docs/content/documentation/code/javascript/_public_functions/this.leaveGrid.md deleted file mode 100644 index 10e0759e..00000000 --- a/legacy/docs/content/documentation/code/javascript/_public_functions/this.leaveGrid.md +++ /dev/null @@ -1,4 +0,0 @@ -* **Parameters**: 0 -* **Return type**: boolean (true if already in grid view, false otherwise) - -Leave grid view if applicable. diff --git a/legacy/docs/content/documentation/code/javascript/_public_functions/this.resize.md b/legacy/docs/content/documentation/code/javascript/_public_functions/this.resize.md deleted file mode 100644 index 65ff961a..00000000 --- a/legacy/docs/content/documentation/code/javascript/_public_functions/this.resize.md +++ /dev/null @@ -1,6 +0,0 @@ -* **Parameters**: 2 - * **newWidth**: the desired width of the document viewer (a number) - * **newHeight**: the desired height of the document viewer (a number) -* **Return type**: none - -Resizes the viewer, then reloads it. See {% private_link "resizeViewer" %}. diff --git a/legacy/docs/content/documentation/code/javascript/_public_functions/this.setState.md b/legacy/docs/content/documentation/code/javascript/_public_functions/this.setState.md deleted file mode 100644 index 7bb3c59f..00000000 --- a/legacy/docs/content/documentation/code/javascript/_public_functions/this.setState.md +++ /dev/null @@ -1,7 +0,0 @@ -* **Parameters**: 1 - * **state**: a state object (as returned by {% public_link "getState" %}) -* **Return type**: none - -Sets this diva instance to the state of another diva instance (or a past state, -or a custom-crafted state). Everything is validated. See -{% private_link "getState" %} for more information about the state object. diff --git a/legacy/docs/content/documentation/code/javascript/_public_functions/this.setZoomLevel.md b/legacy/docs/content/documentation/code/javascript/_public_functions/this.setZoomLevel.md deleted file mode 100644 index d03dc17c..00000000 --- a/legacy/docs/content/documentation/code/javascript/_public_functions/this.setZoomLevel.md +++ /dev/null @@ -1,7 +0,0 @@ -* **Parameters**: 1 - * **zoomLevel**: the desired zoom level -* **Return type**: boolean (false if the provided zoom level is invalid, true - otherwise) - -Zooms in to the desired zoom level. If the current view is grid view, it'll -switch into document view first. diff --git a/legacy/docs/content/documentation/code/javascript/_public_functions/this.toggleMode.md b/legacy/docs/content/documentation/code/javascript/_public_functions/this.toggleMode.md deleted file mode 100644 index 3b438235..00000000 --- a/legacy/docs/content/documentation/code/javascript/_public_functions/this.toggleMode.md +++ /dev/null @@ -1,4 +0,0 @@ -* **Parameters**: 0 -* **Return type**: none - -Toggles fullscreen mode. diff --git a/legacy/docs/content/documentation/code/javascript/_public_functions/this.toggleView.md b/legacy/docs/content/documentation/code/javascript/_public_functions/this.toggleView.md deleted file mode 100644 index fa34a8ff..00000000 --- a/legacy/docs/content/documentation/code/javascript/_public_functions/this.toggleView.md +++ /dev/null @@ -1,4 +0,0 @@ -* **Parameters**: 0 -* **Return type**: none - -Toggle grid view. diff --git a/legacy/docs/content/documentation/code/javascript/_public_functions/this.zoomIn.md b/legacy/docs/content/documentation/code/javascript/_public_functions/this.zoomIn.md deleted file mode 100644 index ec762c07..00000000 --- a/legacy/docs/content/documentation/code/javascript/_public_functions/this.zoomIn.md +++ /dev/null @@ -1,4 +0,0 @@ -* **Parameters**: 0 -* **Return type**: boolean (false if already at the maximum zoom level) - -Attempts to zoom in, changing mode if necessary. diff --git a/legacy/docs/content/documentation/code/javascript/_public_functions/this.zoomOut.md b/legacy/docs/content/documentation/code/javascript/_public_functions/this.zoomOut.md deleted file mode 100644 index f413fa53..00000000 --- a/legacy/docs/content/documentation/code/javascript/_public_functions/this.zoomOut.md +++ /dev/null @@ -1,4 +0,0 @@ -* **Parameters**: 0 -* **Return type**: boolean (false if already at the minimum zoom level) - -Attempts to zoom out, changing mode if necessary. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/ID.md b/legacy/docs/content/documentation/code/javascript/_settings/ID.md deleted file mode 100644 index 683aadee..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/ID.md +++ /dev/null @@ -1,14 +0,0 @@ -This is used to accommodate multiple document viewers on a page. The first (or -only) document viewer on the page will have a prefix of `1-diva`; subsequent -document viewers will have prefixes of `2-diva`, `3-diva`, etc. This means that -any element created in the DOM will look something like this (replacing 1 with -the actual document viewer number): - -```html -
-``` - -This is to ensure that all the elements have unique IDs (as is required for the -HTML to be valid), even if there are multiple instances of diva.js on the page. - -See also [`settings.selector`](#selector). diff --git a/legacy/docs/content/documentation/code/javascript/_settings/adaptivePadding.md b/legacy/docs/content/documentation/code/javascript/_settings/adaptivePadding.md deleted file mode 100644 index d41c6220..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/adaptivePadding.md +++ /dev/null @@ -1,11 +0,0 @@ -A float, between 0 and 1, that determines the padding between pages -(vertically) and around the edges of pages (horizontally) based on the average -height and width of the pages in the document. For instance, if set to 0.05, -horizontal padding will be 5% of the average width and vertical padding will be -5% of the average height. Note that if there are any plugins with icons -enabled, the vertical padding will be at least 40 pixels to make room for the -icons above each page. - -To disable adaptive padding and instead used a fixed padding per page, set this -to 0; the fixed padding per page can then be set in -[`settings.fixedPadding`](#fixedPadding). diff --git a/legacy/docs/content/documentation/code/javascript/_settings/allTilesLoaded.md b/legacy/docs/content/documentation/code/javascript/_settings/allTilesLoaded.md deleted file mode 100644 index 3c7618a6..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/allTilesLoaded.md +++ /dev/null @@ -1,4 +0,0 @@ -{% load extras %} - -Used in {% private_link "loadPage" %} for determining whether or not a page needs more -tiles loaded. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/averageHeights.md b/legacy/docs/content/documentation/code/javascript/_settings/averageHeights.md deleted file mode 100644 index dd9e61ff..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/averageHeights.md +++ /dev/null @@ -1,7 +0,0 @@ -Used for calculating the vertical padding (stored in -[`settings.verticalPadding`](#verticalPadding) if adaptive padding is enabled -(i.e., if [`settings.adaptivePadding`](#adaptivePadding) is greater than 0). -The vertical padding at a particular zoom level is then the product of the -average height of each page at that zoom level and the adaptive padding. - -If adaptive padding is disabled, this setting is not used. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/averageWidths.md b/legacy/docs/content/documentation/code/javascript/_settings/averageWidths.md deleted file mode 100644 index 75842f96..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/averageWidths.md +++ /dev/null @@ -1,3 +0,0 @@ -Used for calculating the horizontal padding (stored in -[`settings.horizontalPadding`](#horizontalPadding) if adaptive padding is -enabled. See [`settings.averageHeights`](#averageHeights). diff --git a/legacy/docs/content/documentation/code/javascript/_settings/blockMobileMove.md b/legacy/docs/content/documentation/code/javascript/_settings/blockMobileMove.md deleted file mode 100644 index c62b0ca9..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/blockMobileMove.md +++ /dev/null @@ -1,6 +0,0 @@ -By default, users viewing the document from a touch device (e.g. an iPad) are -unable to move the webpage, to give it more of an app-like feel. This also -results in users being unable to scroll the page, which is fine if the document -viewer is the only element on the page; if this is not the case, then this -behaviour is undesired, in which case it can be disabled by setting -`blockMobileMove` to false. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/contained.md b/legacy/docs/content/documentation/code/javascript/_settings/contained.md deleted file mode 100644 index 507c8cb2..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/contained.md +++ /dev/null @@ -1,6 +0,0 @@ -This setting controls the position of the fullscreen icon. If set to true, as -in `demo/integrated-demo.html`, then the `relative-position` class will be -added to the container element (setting the container element's position to -`relative`, and the slider section of the toolbar will be -moved over slightly to make room for the fullscreen icon. Otherwise, the -fullscreen icon will simply appear at the top left corner of the page. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/currentPageIndex.md b/legacy/docs/content/documentation/code/javascript/_settings/currentPageIndex.md deleted file mode 100644 index 3d4796f9..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/currentPageIndex.md +++ /dev/null @@ -1,6 +0,0 @@ -{% load extras %} - -This is used to store the number (with 0-based indexing) of the page considered -the "current" page, so that it can be displayed to the user. If more than one -page is visible at a given time, then the current page is determined according -to the scroll direction; see {% private_link "setCurrentPage" %} for more information. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/enableAutoHeight.md b/legacy/docs/content/documentation/code/javascript/_settings/enableAutoHeight.md deleted file mode 100644 index d43bda22..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/enableAutoHeight.md +++ /dev/null @@ -1,6 +0,0 @@ -This setting controls automatic height detection. If set to false, the document -viewer will not dynamically resize based on the height of the window (only -outside of fullscreen mode; the document viewer will always dynamically resize -in fullscreen mode). Enabling automatic height detection is only recommended if -the viewer is the only element on the page, or if there is nothing beneath it. -Consequently, this is disabled by default. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/enableAutoTitle.md b/legacy/docs/content/documentation/code/javascript/_settings/enableAutoTitle.md deleted file mode 100644 index c41571a6..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/enableAutoTitle.md +++ /dev/null @@ -1,10 +0,0 @@ -If set to true, a div element with id `?-diva-title` (where ? is the number of -the document viewer, 1-indexed) will be created as the first child of the -wrapper element (the element that the document viewer is created upon), and -that div will contain the title of the document. This probably only needs to be -set to false if you don't want the title to appear at all, or want it to appear -somewhere completely different in the document, or want to add something before -or after the title; for the latter cases, you can get the title of the document -using the {% public_link "getItemTitle" %} method. If you just want to -change the appearance of the title you can easily do so through CSS, by -targeting the 'diva-title' class. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/enableAutoWidth.md b/legacy/docs/content/documentation/code/javascript/_settings/enableAutoWidth.md deleted file mode 100644 index 7eaa1930..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/enableAutoWidth.md +++ /dev/null @@ -1,5 +0,0 @@ -If set to false, the document viewer will not dynamically resize based on the -width of the window (only outside of fullscreen mode; the document viewer will -always dynamically resize in fullscreen mode). To ensure that the viewer is -always horizontally centred, set the horizontal margins to `auto` in the CSS -(e.g. `margin: 0 auto`). diff --git a/legacy/docs/content/documentation/code/javascript/_settings/enableCanvas.md b/legacy/docs/content/documentation/code/javascript/_settings/enableCanvas.md deleted file mode 100644 index 1b359728..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/enableCanvas.md +++ /dev/null @@ -1,4 +0,0 @@ -Set this to false to disable the canvas plugin. A user's guide to the canvas -plugin can be found [here](../../using/plugins/#the-canvas-plugin). You can -also configure certain settings used by the canvas plugin; more information on -that can be found [here](../../customising/configuring-plugins) MONKEY. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/enableDownload.md b/legacy/docs/content/documentation/code/javascript/_settings/enableDownload.md deleted file mode 100644 index 4a6519e7..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/enableDownload.md +++ /dev/null @@ -1,2 +0,0 @@ -Set this to false to disable the download plugin. A user's guide to the -download plugin can be found [here](../../using/plugin/#the-download-plugin). diff --git a/legacy/docs/content/documentation/code/javascript/_settings/enableFilename.md b/legacy/docs/content/documentation/code/javascript/_settings/enableFilename.md deleted file mode 100644 index 644f5d01..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/enableFilename.md +++ /dev/null @@ -1,6 +0,0 @@ -{% load extras %} - -If set to true, the `p` hash parameter will be disabled and the viewer will -instead make use of the `i` {% link "hash parameter" %}, which uses -the filename. For instance, to go to the second page, one would have to specify -`i=bm_002.tif` instead of `p=2`. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/enableFullscreen.md b/legacy/docs/content/documentation/code/javascript/_settings/enableFullscreen.md deleted file mode 100644 index a1a1c973..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/enableFullscreen.md +++ /dev/null @@ -1,7 +0,0 @@ -{% load extras %} - -Enable or disable the appearance of the fullscreen icon, which toggles -fullscreen mode. If set to false, the icon will not appear, but it will still -be possible to toggle fullscreen mode through the public functions -({% public_link "toggleMode" %}, {% public_link "enterFullscreen" %}, -{% public_link "leaveFullscreen" %}) and the `f` {% link "hash parameter" %}. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/enableGotoPage.md b/legacy/docs/content/documentation/code/javascript/_settings/enableGotoPage.md deleted file mode 100644 index f5e79253..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/enableGotoPage.md +++ /dev/null @@ -1,6 +0,0 @@ -{% load extras %} - -Set to true if you want a "Go to page" input field, where the user can enter -the page number they want to jump directly to (shown in the screenshot below): - -{% docs_image "jumping-to-a-page" %} diff --git a/legacy/docs/content/documentation/code/javascript/_settings/enableGridIcon.md b/legacy/docs/content/documentation/code/javascript/_settings/enableGridIcon.md deleted file mode 100644 index 5c5dca8b..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/enableGridIcon.md +++ /dev/null @@ -1,7 +0,0 @@ -{% load extras %} - -Set to true if you want to enable the icon for toggling grid view. If this is -set to false, the icon will not appear but it will still be possible to toggle -grid view using the public functions ({% public_link "enterGrid" %}, -{% public_link "leaveGrid" %}, {% public_link "toggleView" %}) and the `g` -{% link "hash parameter" %}. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/enableGridSlider.md b/legacy/docs/content/documentation/code/javascript/_settings/enableGridSlider.md deleted file mode 100644 index ca7186d2..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/enableGridSlider.md +++ /dev/null @@ -1,5 +0,0 @@ -{% load extras %} - -Controls the "pages per row" slider in grid view. If this is disabled, then -it's not possible to change the number of pages per row except through the `n` -{% link "hash parameter" %} or the {% public_link "setPagesPerRow" %} public function. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/enableKeyScroll.md b/legacy/docs/content/documentation/code/javascript/_settings/enableKeyScroll.md deleted file mode 100644 index 91f8b858..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/enableKeyScroll.md +++ /dev/null @@ -1,4 +0,0 @@ -If set to true, the user can scroll down through the document by pressing the -page up and page down keys anywhere on the page. This overrides the default -page up/down key behaviour of scrolling the page (as opposed to the document -viewer), and can be disabled if desired. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/enableLinkIcon.md b/legacy/docs/content/documentation/code/javascript/_settings/enableLinkIcon.md deleted file mode 100644 index e5a08a80..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/enableLinkIcon.md +++ /dev/null @@ -1,5 +0,0 @@ -{% load extras %} - -Controls the presence of the link icon, in the top right corner. If set to -false, the icon will no longer appear but the {% link "hash parameter" %} -functionality will still work. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/enableSpaceScroll.md b/legacy/docs/content/documentation/code/javascript/_settings/enableSpaceScroll.md deleted file mode 100644 index 1aa54a41..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/enableSpaceScroll.md +++ /dev/null @@ -1,3 +0,0 @@ -If set to true, the user can scroll down through the document by pressing the -space key anywhere on the page. Set to false initially to prevent interference -with possible search bars or input boxes. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/enableZoomSlider.md b/legacy/docs/content/documentation/code/javascript/_settings/enableZoomSlider.md deleted file mode 100644 index 30dfb354..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/enableZoomSlider.md +++ /dev/null @@ -1,3 +0,0 @@ -Controls the zoom slider in document viewer. If there is no zoom slider, then -the user can still zoom in and out, but can only do it through double-clicking -(or pinch-zooming on a touch device). diff --git a/legacy/docs/content/documentation/code/javascript/_settings/fixedHeightGrid.md b/legacy/docs/content/documentation/code/javascript/_settings/fixedHeightGrid.md deleted file mode 100644 index 81476891..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/fixedHeightGrid.md +++ /dev/null @@ -1,18 +0,0 @@ -{% load extras %} - -If set to true, all images will have the same height in grid view. If set to -false, they will all have the same width. If you know that all of your images -have the exact same dimensions, then this setting doesn't matter and they will -all have the same width and height. If one or more of the images is -significantly wider than the rest, then you may wish to set this to false; -otherwise, keep it at true. - -Here is an example of a document with one page significantly wider than the -rest, with `fixedHeightGrid` set to false: - -{% docs_image "fixed-width-grid" %} - -The alternative for this document would be to set it to true, resulting in the -following sparse-looking grid: - -{% docs_image "fixed-height-grid" %} diff --git a/legacy/docs/content/documentation/code/javascript/_settings/fixedPadding.md b/legacy/docs/content/documentation/code/javascript/_settings/fixedPadding.md deleted file mode 100644 index a7aa6865..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/fixedPadding.md +++ /dev/null @@ -1,5 +0,0 @@ -The number of pixels of padding between pages and on the left and right sides -of pages. Only used if [`settings.adaptivePadding`](#adaptivePadding) is set -to 0. If the width of the pages is sufficiently smaller than the width of the -document viewer, then the width will vary; however, this setting will always -dictate the minimum width when adaptive padding is set to 0. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/goDirectlyTo.md b/legacy/docs/content/documentation/code/javascript/_settings/goDirectlyTo.md deleted file mode 100644 index 8fe802da..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/goDirectlyTo.md +++ /dev/null @@ -1,3 +0,0 @@ -This determines the first page that is shown when loading the document viewer. -Zero-indexed, so to load page 10, set this to 9. Overridden by the `p` or `i` -{% link "hash parameter" %} (see [`settings.enableFilename`](#enableFilename)). diff --git a/legacy/docs/content/documentation/code/javascript/_settings/hashParamSuffix.md b/legacy/docs/content/documentation/code/javascript/_settings/hashParamSuffix.md deleted file mode 100644 index b010b3d1..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/hashParamSuffix.md +++ /dev/null @@ -1,14 +0,0 @@ -{% load extras %} - -If there is only one document viewer on the page, this will be empty, and you -can set the hash parameters for the document viewer in the standard way (e.g. -with `#z=2&f=true`). However, if there is more than one document viewer, then -it becomes necessary to use a suffix for each parameter for all but the first -document viewer. In this case, the first diva.js instance created will have no -suffix; the second will have a suffix of '2', and the third will have a suffix -of '3', etc. To target only the second document viewer, you can set the hash -parameters using, e.g., `#z2=2&f2=true`. - -The generated link for each document viewer takes this into account, so there -is no need to worry about this when using the {% public_link "getCurrentURL" %} -or {% public_link "getURLHash" %} public methods (or the link icon). diff --git a/legacy/docs/content/documentation/code/javascript/_settings/heightAbovePages.md b/legacy/docs/content/documentation/code/javascript/_settings/heightAbovePages.md deleted file mode 100644 index d93383aa..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/heightAbovePages.md +++ /dev/null @@ -1,5 +0,0 @@ -Used when determining the amount to scroll when jumping to a page or changing -the zoom level. Also used to determine the top offset when creating a page div -(as they are absolutely-positioned). Consists of an array of `n` elements, -where `n` is the number of pages in the document; each element is the height -above the corresponding page. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/horizontalPadding.md b/legacy/docs/content/documentation/code/javascript/_settings/horizontalPadding.md deleted file mode 100644 index ad34f949..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/horizontalPadding.md +++ /dev/null @@ -1,3 +0,0 @@ -See [`settings.fixedPadding`](#fixedPadding) and -[`settings.adaptivePadding`](#adaptivePadding) for details on how this is -calculated. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/iipServerURL.md b/legacy/docs/content/documentation/code/javascript/_settings/iipServerURL.md deleted file mode 100644 index a4fea356..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/iipServerURL.md +++ /dev/null @@ -1,10 +0,0 @@ -The address to the IIPImage server script, along with the absolute path to the -directory the images are stored in (keep the trailing slash). Format: - -```javascript -$('#diva-wrapper').diva({ - // ... - iipServerURL: "http://www.example.com/path-to-cgi-directory/iipsrv-script-name?FIF=/path/to/images/", - // ... -}); -``` diff --git a/legacy/docs/content/documentation/code/javascript/_settings/imageDir.md b/legacy/docs/content/documentation/code/javascript/_settings/imageDir.md deleted file mode 100644 index 07b9cb3e..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/imageDir.md +++ /dev/null @@ -1,10 +0,0 @@ -The image directory, relative to the root defined in divaserve.php. No trailing -or leading slashes necessary. Format: - -```javascript -$('#diva-wrapper').diva({ - // ... - imageDir: "beromunster", - // ... -}); -``` diff --git a/legacy/docs/content/documentation/code/javascript/_settings/inFullscreen.md b/legacy/docs/content/documentation/code/javascript/_settings/inFullscreen.md deleted file mode 100644 index 184a3bd5..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/inFullscreen.md +++ /dev/null @@ -1,4 +0,0 @@ -{% load extras %} - -Set to true to enter fullscreen mode initially (upon page load). Can be -overridden if the `f` {% link "hash parameter" %} is set to false. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/inGrid.md b/legacy/docs/content/documentation/code/javascript/_settings/inGrid.md deleted file mode 100644 index eb271f2d..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/inGrid.md +++ /dev/null @@ -1,4 +0,0 @@ -{% load extras %} - -Set to true to enter grid view initially (upon page load). Can be overridden if -the `g` {% link "hash parameter" %} is set to false. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/innerSelector.md b/legacy/docs/content/documentation/code/javascript/_settings/innerSelector.md deleted file mode 100644 index 70ae2548..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/innerSelector.md +++ /dev/null @@ -1 +0,0 @@ -Used with jQuery: `$(settings.innerSelector)`. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/itemTitle.md b/legacy/docs/content/documentation/code/javascript/_settings/itemTitle.md deleted file mode 100644 index f6fa77ac..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/itemTitle.md +++ /dev/null @@ -1,7 +0,0 @@ -The title is determined from the name of the directory containing the images, -with all dashes and underscores converted to spaces and title-case applied. For -example, `some-folder` and `some_folder` would both become "Some Folder". - -If [`settings.enableAutoTitle`](#enableAutoTitle) is enabled, then this title is -shown on the page within a div with class `.diva-title`. To prevent it from -showing up, simply set `settings.enableAutoTitle` to false. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/maxPagesPerRow.md b/legacy/docs/content/documentation/code/javascript/_settings/maxPagesPerRow.md deleted file mode 100644 index 3ee297a8..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/maxPagesPerRow.md +++ /dev/null @@ -1,6 +0,0 @@ -{% load extras %} - -Controls the maximum number of pages per row to display in grid view. Should be -equal to or greater than [`settings.minPagesPerRow`](#minPagesPerRow) (if -not, will be set to `settings.minPagesPerRow`). This value is used by the grid -slider and when validating the `n` {% link "hash parameter" %}. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/maxRatio.md b/legacy/docs/content/documentation/code/javascript/_settings/maxRatio.md deleted file mode 100644 index e2a74018..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/maxRatio.md +++ /dev/null @@ -1,4 +0,0 @@ -This ratio is used only when [`settings.fixedHeightGrid`](#fixedHeightGrid) is -set to false; i.e., when all the pages are supposed to have the same width. In -this case, the row height is calculated using this ratio (to accommodate the -tallest page for a fixed page width). diff --git a/legacy/docs/content/documentation/code/javascript/_settings/maxWidths.md b/legacy/docs/content/documentation/code/javascript/_settings/maxWidths.md deleted file mode 100644 index 04fba660..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/maxWidths.md +++ /dev/null @@ -1,6 +0,0 @@ -Used for determining the width of the `.diva-inner` element. At lower zoom -levels, the widest page is usually less wide than the document viewer itself, -in which case the width of the `.diva-inner` element will just be set to the -width of the document viewer. Otherwise, the width of the widest page (plus the -horizontal padding on either side, if any) will be the width of the inner -element. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/maxZoomLevel.md b/legacy/docs/content/documentation/code/javascript/_settings/maxZoomLevel.md deleted file mode 100644 index f5530704..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/maxZoomLevel.md +++ /dev/null @@ -1,4 +0,0 @@ -Controls the maximum zoom level in document view. Should be equal to or less -than the actual lowest max zoom level of the document, as determined by the -divaserve script (if not, will be set to it). This value is used by the zoom -slider and when validating the `z` {% link "hash parameter" %}. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/minHeight.md b/legacy/docs/content/documentation/code/javascript/_settings/minHeight.md deleted file mode 100644 index 8ccfa24e..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/minHeight.md +++ /dev/null @@ -1,5 +0,0 @@ -If the `.diva-outer` element has a `min-height` attribute (as defined in the -stylesheet, or programmatically using Javascript prior to the instantiation of -the document viewer) then `settings.minHeight` will be set to that. The height -of the document viewer cannot be made any smaller than this when the window is -resized. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/minPagesPerRow.md b/legacy/docs/content/documentation/code/javascript/_settings/minPagesPerRow.md deleted file mode 100644 index 64f53b4f..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/minPagesPerRow.md +++ /dev/null @@ -1,3 +0,0 @@ -Controls the minimum number of pages per row to display in grid view. Should be -at least 2 (if not, will be set to 2). This value is used by the slider and -when validating the `n` {% link "hash parameter" %}. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/minRatio.md b/legacy/docs/content/documentation/code/javascript/_settings/minRatio.md deleted file mode 100644 index fbca38b3..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/minRatio.md +++ /dev/null @@ -1,4 +0,0 @@ -This ratio is used only when [`settings.fixedHeightGrid`](#fixedHeightGrid) is -set to true; i.e., when all the pages are supposed to have the same height in -grid view. In this case, the row height is calculated using this ratio (to -accommodate the widest page for a fixed page height). diff --git a/legacy/docs/content/documentation/code/javascript/_settings/minWidth.md b/legacy/docs/content/documentation/code/javascript/_settings/minWidth.md deleted file mode 100644 index 57f8f385..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/minWidth.md +++ /dev/null @@ -1,5 +0,0 @@ -If the `.diva-outer` element has a `min-width` attribute (as defined in the -stylesheet, or programmatically using Javascript prior to the instantiation of -the document viewer) then `settings.minWidth` will be set to that. The width -of the document viewer cannot be made any smaller than this when the window is -resized. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/minZoomLevel.md b/legacy/docs/content/documentation/code/javascript/_settings/minZoomLevel.md deleted file mode 100644 index 0fec36cb..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/minZoomLevel.md +++ /dev/null @@ -1,3 +0,0 @@ -Controls the minimum zoom level in document view. This must be greater than or -equal to 0 and less than [`settings.maxZoomLevel`](#maxZoomLevel) (or equal -to it, if you wish to disable zooming entirely). diff --git a/legacy/docs/content/documentation/code/javascript/_settings/mobileWebkit.md b/legacy/docs/content/documentation/code/javascript/_settings/mobileWebkit.md deleted file mode 100644 index ab95368d..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/mobileWebkit.md +++ /dev/null @@ -1,5 +0,0 @@ -This setting is determined by checking if `window.orientation` is defined. If -so, then the device is probably some sort of mobile or tablet device. The name -`mobileWebkit` was chosen because all of the testing was done on iOS and -Android, but this setting should cover those using other mobile/tablet devices -as well. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/onJump.md b/legacy/docs/content/documentation/code/javascript/_settings/onJump.md deleted file mode 100644 index e58fbe0e..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/onJump.md +++ /dev/null @@ -1,17 +0,0 @@ -A callback function that will be executed each time the user attempts to go -straight to a page using the "Go to page" box. Can be wrapped in an anonymous -function that takes the desired page number (0-indexed) as the parameter -(optional). Will only be used if [`settings.enableGotoPage`](#enableGotoPage) -is set to true. - -Format: - -```javascript -$('#diva-wrapper').diva({ - // ... - onJump: function (pageIndex) { - // Write your code here - }, - // ... -}); -``` diff --git a/legacy/docs/content/documentation/code/javascript/_settings/onModeToggle.md b/legacy/docs/content/documentation/code/javascript/_settings/onModeToggle.md deleted file mode 100644 index f98179fa..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/onModeToggle.md +++ /dev/null @@ -1,15 +0,0 @@ -Callback function, executed when the user enters or exits fullscreen mode. -Receives one parameter: a boolean representing whether the user is now in -fullscreen mode (if it is true, then yes). - -Format: - -```javascript -$('#diva-wrapper').diva({ - // ... - onModeToggle: function (inFullscreen) { - // Write your code here - }, - // ... -}); -``` diff --git a/legacy/docs/content/documentation/code/javascript/_settings/onPageLoad.md b/legacy/docs/content/documentation/code/javascript/_settings/onPageLoad.md deleted file mode 100644 index f4614edf..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/onPageLoad.md +++ /dev/null @@ -1,17 +0,0 @@ -A callback function that will be executed any time a page is loaded (i.e. the -page div is appended to the DOM). Takes three parameters: the page index -(0-indexed), the page filename, and a string that can be used to select the -page div using jQuery (`$(pageSelector)` where `pageSelector` is the name of -the parameter). - -Format: - -```javascript -$('#diva-wrapper').diva({ - // ... - onPageLoad: function (pageIndex, filename, pageSelector) { - // Write your code here - }, - // -}); -``` diff --git a/legacy/docs/content/documentation/code/javascript/_settings/onReady.md b/legacy/docs/content/documentation/code/javascript/_settings/onReady.md deleted file mode 100644 index 1ac6f315..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/onReady.md +++ /dev/null @@ -1,15 +0,0 @@ -Callback function, executed when (and only when) the initial load is complete. -Takes the `settings` object as an optional parameter (passed by reference, so -any changes made to this object will affect the document viewer's settings). - -Format: - -```javascript -$('#diva-wrapper').diva({ - // ... - onReady: function (settings) { - // Write your code here - }, - // ... -}); -``` diff --git a/legacy/docs/content/documentation/code/javascript/_settings/onScroll.md b/legacy/docs/content/documentation/code/javascript/_settings/onScroll.md deleted file mode 100644 index b5bdbc77..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/onScroll.md +++ /dev/null @@ -1,26 +0,0 @@ -A callback function that will be executed whenever any vertical or horizontal scroll event is fired within the document viewer. Scroll events occur when the user scrolls through the documents by any method, including the page up/down keys (if -[`settings.enableKeyScroll`](#enableKeyScroll) is enabled), the scrollbar, -dragging the viewer pane, and the mousewheel; a scroll event is also fired -after each zoom and when the user attempts to jump to a specific page. Note -that this function will be executed for _every_ scroll event, regardless of -whether the user is scrolling up or down; if it is necessary to distinguish -between the two, you can assign callback functions to -[`settings.onScrollUp`](#onScrollUp) and -[`settings.onScrollDown`](#onScrollDown) instead. - -This callback takes one parameter: the current page number (0-indexed), after -having scrolled. - -There are currently no callbacks for exclusively handling horizontal scrolling. - -Format: - -```javascript -$('#diva-wrapper').diva({ - // ... - onScroll: function (newPageIndex) { - // Write your code here - }, - // ... -}); -``` diff --git a/legacy/docs/content/documentation/code/javascript/_settings/onScrollDown.md b/legacy/docs/content/documentation/code/javascript/_settings/onScrollDown.md deleted file mode 100644 index 882494ad..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/onScrollDown.md +++ /dev/null @@ -1,14 +0,0 @@ -A callback function that is only executed when a user scrolls down. Takes the -new page number (0-based indexing) as a parameter. - -Format: - -```javascript -$('#diva-wrapper').diva({ - // ... - onScrollDown: function (newPageIndex) { - // Write your code here - }, - // ... -}); -``` diff --git a/legacy/docs/content/documentation/code/javascript/_settings/onScrollUp.md b/legacy/docs/content/documentation/code/javascript/_settings/onScrollUp.md deleted file mode 100644 index 52bd6e61..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/onScrollUp.md +++ /dev/null @@ -1,14 +0,0 @@ -A callback function that is only executed when a user scrolls up. Takes the -new page number (0-based indexing) as a parameter. - -Format: - -```javascript -$('#diva-wrapper').diva({ - // ... - onScrollUp: function (newPageIndex) { - // Write your code here - }, - // ... -}); -``` diff --git a/legacy/docs/content/documentation/code/javascript/_settings/onViewToggle.md b/legacy/docs/content/documentation/code/javascript/_settings/onViewToggle.md deleted file mode 100644 index d0cdee36..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/onViewToggle.md +++ /dev/null @@ -1,15 +0,0 @@ -Callback function, executed when the user enters or exits grid view. Receives -one parameter: a boolean representing whether the user is now in grid view (if -it is true, then yes). - -Format: - -```javascript -$('#diva-wrapper').diva({ - // ... - onViewToggle: function (inGrid) { - // Write your code here - }, - // ... -}); -``` diff --git a/legacy/docs/content/documentation/code/javascript/_settings/onZoom.md b/legacy/docs/content/documentation/code/javascript/_settings/onZoom.md deleted file mode 100644 index d2a50498..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/onZoom.md +++ /dev/null @@ -1,20 +0,0 @@ -A callback function that is executed whenever a zoom event is fired on the -document viewer. Such an event will be fired whenever the user moves the zoom -slider, double-clicks to zoom in or out, or pinch-zooms on a touch device. The -new zoom level is passed as a parameter. - -If you need to distinguish between zooming in and zooming out, you can make use -of [`settings.onZoomIn`](#onZoomIn) and [`settings.onZoomOut`](#onZoomOut) -instead. - -Format: - -```javascript -$('#diva-wrapper').diva({ - // ... - onZoom: function (newZoomLevel) { - // Write your code here - }, - // ... -}); -``` diff --git a/legacy/docs/content/documentation/code/javascript/_settings/onZoomIn.md b/legacy/docs/content/documentation/code/javascript/_settings/onZoomIn.md deleted file mode 100644 index 25eb345c..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/onZoomIn.md +++ /dev/null @@ -1,14 +0,0 @@ -A callback function that is executed when a user zooms in. The new zoom level -is passed as a parameter. - -Format: - -```javascript -$('#diva-wrapper').diva({ - // ... - onZoomIn: function (newZoomLevel) { - // Write your code here - }, - // ... -}); -``` diff --git a/legacy/docs/content/documentation/code/javascript/_settings/onZoomOut.md b/legacy/docs/content/documentation/code/javascript/_settings/onZoomOut.md deleted file mode 100644 index 65489499..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/onZoomOut.md +++ /dev/null @@ -1,14 +0,0 @@ -A callback function that is executed when a user zooms out. The new zoom level -is passed as a parameter. - -Format: - -```javascript -$('#diva-wrapper').diva({ - // ... - onZoomOut: function (newZoomLevel) { - // Write your code here - }, - // ... -}); -``` diff --git a/legacy/docs/content/documentation/code/javascript/_settings/originalHeight.md b/legacy/docs/content/documentation/code/javascript/_settings/originalHeight.md deleted file mode 100644 index 78331e45..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/originalHeight.md +++ /dev/null @@ -1 +0,0 @@ -Used when resizing the document viewer on non-mobile/tablet devices. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/originalWidth.md b/legacy/docs/content/documentation/code/javascript/_settings/originalWidth.md deleted file mode 100644 index 78331e45..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/originalWidth.md +++ /dev/null @@ -1 +0,0 @@ -Used when resizing the document viewer on non-mobile/tablet devices. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/outerSelector.md b/legacy/docs/content/documentation/code/javascript/_settings/outerSelector.md deleted file mode 100644 index 5ea4a62f..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/outerSelector.md +++ /dev/null @@ -1 +0,0 @@ -Used with jQuery: `$(settings.outerSelector)`. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/pageLeftOffsets.md b/legacy/docs/content/documentation/code/javascript/_settings/pageLeftOffsets.md deleted file mode 100644 index ef1d24f8..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/pageLeftOffsets.md +++ /dev/null @@ -1,5 +0,0 @@ -{% load extras %} - -Used for positioning pages (and tiles) in {% private_link "loadPage" %}, and -for checking if a tile is horizontally in the viewport -{% private_link "isTileVisible" %}. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/pageLoadTimeout.md b/legacy/docs/content/documentation/code/javascript/_settings/pageLoadTimeout.md deleted file mode 100644 index 8eb0f3b4..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/pageLoadTimeout.md +++ /dev/null @@ -1,16 +0,0 @@ -The number of milliseconds to wait before loading a page after first -determining that the page should be loaded. This timeout is useful in -preventing unnecessary page loads, such as when a user is scrolling quickly -through a document and doesn't wish to load all the intermediate pages that are -being scrolled past. - -A longer timeout results in fewer pages unnecessarily loaded, but can result in -scrolling that feels less smooth and pages taking longer to load (from a user's -point of view). A shorter timeout results in pages loading more immediately, -but scrolling through the document can lead to many more images being -downloaded than is necessary, and since the downloads are queued up, subsequent -page loads can be significantly slower. The default value has been tested on -faster connections and seems to be a good middle ground, but it may not be -optimal for slower connections, or for particular documents; in that case, you -may wish to play around with the value until you can find one that seems -optimal. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/pageTimeouts.md b/legacy/docs/content/documentation/code/javascript/_settings/pageTimeouts.md deleted file mode 100644 index 9b0ab794..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/pageTimeouts.md +++ /dev/null @@ -1,4 +0,0 @@ -This is useful because there may be more than one page load timeout (set -using `setTimeout`) at any given time, and all these timeout IDs need to be -stored so that they can be cleared if it becomes necessary to stop loading a -page (for instance, if the zoom level changes). diff --git a/legacy/docs/content/documentation/code/javascript/_settings/pageTools.md b/legacy/docs/content/documentation/code/javascript/_settings/pageTools.md deleted file mode 100644 index 5b6d6798..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/pageTools.md +++ /dev/null @@ -1,16 +0,0 @@ -More specifically, this holds the HTML (as a string) of the `.diva-page-tools` -div. If no plugins with a `handleClick()` method are enabled, then this will be -an empty string. Otherwise, it will contain the HTML necessary to create an -icon for that plugin. - -For example, if exactly one plugin (called `info`) were enabled, then -`settings.pageTools` would look like this: - -```html -
-
-
-``` - -The above would be appended to each page div, immediately before the first tile -div. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/pages.md b/legacy/docs/content/documentation/code/javascript/_settings/pages.md deleted file mode 100644 index 8ae4cd07..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/pages.md +++ /dev/null @@ -1,34 +0,0 @@ -{% load extras %} - -The format of this array is identical to the format of the `pgs` array returned -in the JSON response by the divaserve script. The data for each page is stored -in an object, and all the zoom-level-specific data is stored in the under the -`d` key, with one object per zoom level. The {% private_link "getPageData" %} -function is a shortcut for looking up an attribute in the `d` object of a given -page at the current zoom level. - -The format is given below (only the first page is shown, and only the data for -the first two zoom levels): - -```json -[ - { - "d": [ - { - "c": 1, - "r": 2, - "h": 300, - "w": 200 - }, - { - "c": 2, - "r": 3, - "h": 600, - "w": 400 - } - ], - "m": 5, - "f": "1.tif" - } -] -``` diff --git a/legacy/docs/content/documentation/code/javascript/_settings/pagesPerRow.md b/legacy/docs/content/documentation/code/javascript/_settings/pagesPerRow.md deleted file mode 100644 index db56f2fe..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/pagesPerRow.md +++ /dev/null @@ -1,3 +0,0 @@ -The default number of pages to display per row in grid view. The width of each -page is calculated based on this figure in conjunction with the width of the -document viewer's outer panel. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/panelHeight.md b/legacy/docs/content/documentation/code/javascript/_settings/panelHeight.md deleted file mode 100644 index 2828a093..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/panelHeight.md +++ /dev/null @@ -1,12 +0,0 @@ -{% load extras %} - -What exactly constitutes the "document viewer pane" is illustrated in the -diagram below: - -{% docs_image "document-viewer-pane" %} - -In fullscreen mode, this is the entire screen, minus the vertical scrollbar on -the right. - -The height and width of this pane are stored as a means of determining whether -or not certain pages should be loaded. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/panelWidth.md b/legacy/docs/content/documentation/code/javascript/_settings/panelWidth.md deleted file mode 100644 index 5900179e..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/panelWidth.md +++ /dev/null @@ -1 +0,0 @@ -See [`settings.panelHeight`](#panelHeight). diff --git a/legacy/docs/content/documentation/code/javascript/_settings/realMaxZoom.md b/legacy/docs/content/documentation/code/javascript/_settings/realMaxZoom.md deleted file mode 100644 index 78efad6e..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/realMaxZoom.md +++ /dev/null @@ -1,7 +0,0 @@ -This is assigned the value of `max_zoom` as returned by the divaserve script. -This is necessary in cases where [`settings.maxZoomLevel`](#maxZoomLevel) is -set to something less than the true maximum zoom level of the document. In that -case, the user should be limited to the maximum zoom level specified by the -site administrator, but the true maximum zoom level of the document is still -needed for calculating the zoom level to pass to IIPImage for each individual -image. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/rowLoadTimeout.md b/legacy/docs/content/documentation/code/javascript/_settings/rowLoadTimeout.md deleted file mode 100644 index 27b9a22c..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/rowLoadTimeout.md +++ /dev/null @@ -1,2 +0,0 @@ -Similar to [`settings.pageLoadTimeout`](#pageLoadTimeout), but for each row in -grid view. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/selector.md b/legacy/docs/content/documentation/code/javascript/_settings/selector.md deleted file mode 100644 index c1a555bf..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/selector.md +++ /dev/null @@ -1,5 +0,0 @@ -For example, to select an element with ID `1-diva-foo`, and given that there is -only one document viewer on the page, one would do `$(settings.selector + -'foo')`. - -See [`settings.ID`](#ID). diff --git a/legacy/docs/content/documentation/code/javascript/_settings/singleClick.md b/legacy/docs/content/documentation/code/javascript/_settings/singleClick.md deleted file mode 100644 index a9e76b41..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/singleClick.md +++ /dev/null @@ -1,4 +0,0 @@ -This is a workaround to get control+double-click events to work in Firefox on -Macs. More information about the issue can be found in the issue tracker: [Ctrl -+ zooming doesn't work in Firefox on -Mac](https://github.com/DDMAL/diva.js/issues/19) diff --git a/legacy/docs/content/documentation/code/javascript/_settings/throbberTimeout.md b/legacy/docs/content/documentation/code/javascript/_settings/throbberTimeout.md deleted file mode 100644 index 65013814..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/throbberTimeout.md +++ /dev/null @@ -1,10 +0,0 @@ -{% load extras %} - -The number of milliseconds to wait for the AJAX request to be returned before -showing a throbber (loading indicator icon) in the middle of the document -viewer pane, as in the following screenshot: - -{% docs_image "throbber" %} - -This is useful if a user is on a slow network connection or if the divaserve -script is slow to respond. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/throbberTimeoutID.md b/legacy/docs/content/documentation/code/javascript/_settings/throbberTimeoutID.md deleted file mode 100644 index 925f6700..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/throbberTimeoutID.md +++ /dev/null @@ -1,3 +0,0 @@ -Used to clear the timeout (with `clearTimeout()`) if the request completes -before the timeout ends. See also -[`settings.throbberTimeout`](#throbberTimeout). diff --git a/legacy/docs/content/documentation/code/javascript/_settings/tileFadeSpeed.md b/legacy/docs/content/documentation/code/javascript/_settings/tileFadeSpeed.md deleted file mode 100644 index b06002a2..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/tileFadeSpeed.md +++ /dev/null @@ -1,5 +0,0 @@ -Used in conjunction with the jQuery [`fadeIn()`](http://api.jquery.com/fadein/) -method. Sets the duration of the animation, in milliseconds. The strings 'fast' -and 'slow' can also be used to indicate durations of 200 and 600 milliseconds, -respectively. Setting this to 0 disables the feature. This feature is initially -disabled to make tile loads appear faster. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/tileHeight.md b/legacy/docs/content/documentation/code/javascript/_settings/tileHeight.md deleted file mode 100644 index ee823b29..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/tileHeight.md +++ /dev/null @@ -1,3 +0,0 @@ -The height of the tiles, in pixels (configured when processing the images into -tiled images using either process.py or a custom script). Usually tiles are -256x256, but if you have nonstandard tile sizes then you can change this. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/tileWidth.md b/legacy/docs/content/documentation/code/javascript/_settings/tileWidth.md deleted file mode 100644 index a2c742ca..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/tileWidth.md +++ /dev/null @@ -1 +0,0 @@ -The width of the tiles, in pixels. See [`settings.tileHeight`](#tileHeight). diff --git a/legacy/docs/content/documentation/code/javascript/_settings/totalHeights.md b/legacy/docs/content/documentation/code/javascript/_settings/totalHeights.md deleted file mode 100644 index 44ba8140..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/totalHeights.md +++ /dev/null @@ -1,2 +0,0 @@ -This is set to the value returned as `t_hei` in the JSON response from the -divaserve script, so it does not include vertical padding. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/verticalOffset.md b/legacy/docs/content/documentation/code/javascript/_settings/verticalOffset.md deleted file mode 100644 index 71ffedc7..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/verticalOffset.md +++ /dev/null @@ -1 +0,0 @@ -[`settings.horizontalOffset`](#horizontalOffset) diff --git a/legacy/docs/content/documentation/code/javascript/_settings/verticalPadding.md b/legacy/docs/content/documentation/code/javascript/_settings/verticalPadding.md deleted file mode 100644 index ad34f949..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/verticalPadding.md +++ /dev/null @@ -1,3 +0,0 @@ -See [`settings.fixedPadding`](#fixedPadding) and -[`settings.adaptivePadding`](#adaptivePadding) for details on how this is -calculated. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/viewerXOffset.md b/legacy/docs/content/documentation/code/javascript/_settings/viewerXOffset.md deleted file mode 100644 index cc02ec0f..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/viewerXOffset.md +++ /dev/null @@ -1,2 +0,0 @@ -Used for determining the selected page when double-clicking in grid view. See -{% private_link "handleGridDoubleClick" %}. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/viewerYOffset.md b/legacy/docs/content/documentation/code/javascript/_settings/viewerYOffset.md deleted file mode 100644 index 1ebfd142..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/viewerYOffset.md +++ /dev/null @@ -1 +0,0 @@ -See [`settings.viewerXOffset`](#viewerXOffset). diff --git a/legacy/docs/content/documentation/code/javascript/_settings/viewportMargin.md b/legacy/docs/content/documentation/code/javascript/_settings/viewportMargin.md deleted file mode 100644 index 2424772b..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/viewportMargin.md +++ /dev/null @@ -1 +0,0 @@ -The distance beyond the edge of the viewport to be counted as "within for the viewport" when loading images. Increasing this value results in slightly smoother scrolling, but can increase the amount of data transferred unnecessarily (and thus result in image loading delays when scrolling through the document). The default value of 200 was chosen because it provided a good balance between smooth scrolling and preventing unnecessary data transfer. diff --git a/legacy/docs/content/documentation/code/javascript/_settings/zoomLevel.md b/legacy/docs/content/documentation/code/javascript/_settings/zoomLevel.md deleted file mode 100644 index 0c5613bd..00000000 --- a/legacy/docs/content/documentation/code/javascript/_settings/zoomLevel.md +++ /dev/null @@ -1,5 +0,0 @@ -The initial zoom level. If the zoom slider has been enabled, then this is the -value the zoom slider will show. If this value does not lie between -[`settings.minZoomLevel`](#minZoomLevel) and -[`settings.maxZoomLevel`](#maxZoomLevel), then `settings.minZoomLevel` will -be used for the initial zoom level. diff --git a/legacy/docs/content/documentation/code/javascript/functions.md b/legacy/docs/content/documentation/code/javascript/functions.md deleted file mode 100644 index f99ab1fa..00000000 --- a/legacy/docs/content/documentation/code/javascript/functions.md +++ /dev/null @@ -1,36 +0,0 @@ -All the private and public functions defined in source/js/diva.js and -source/js/utils.js are described below. - -[TOC] - -Private functions ------------------ - -These functions are all local to the `Diva` function (which behaves like a -class that can be instantiated). In other words, although they can be accessed -_within_ the main diva.js code (within the outer `Diva` function), they cannot -be accessed from outside it. For the list of functions that _can_ be accessed -from outside the `Diva` function, see the [Public functions](#public-functions) -section below. - -{% include "documentation/private_functions.html" %} - -Public functions ----------------- - -{% include "documentation/public_functions.html" %} - -Utility functions ------------------ - -These functions are defined in source/js/utils.js. Most are defined within -anonymous functions to prevent local variables from polluting the global -namescape and to ensure that there is no conflict with other libraries that -have aliased the `$` variable to something other than `jQuery`. - -{% comment %} -Parsing the utils.js file and getting the functions from there is too difficult -as the functions are all defined in differently. There are also fewer functions -and it's unlikely to change much. For now, the utility function names are just -going to be hardcoded in jsparse.py. -{% endcomment %} diff --git a/legacy/docs/content/documentation/code/javascript/index.md b/legacy/docs/content/documentation/code/javascript/index.md deleted file mode 100644 index 6c3341ff..00000000 --- a/legacy/docs/content/documentation/code/javascript/index.md +++ /dev/null @@ -1 +0,0 @@ -This section of the documentation is under construction. Please check back soon. diff --git a/legacy/docs/content/documentation/code/javascript/loading.md b/legacy/docs/content/documentation/code/javascript/loading.md deleted file mode 100644 index 9a3727be..00000000 --- a/legacy/docs/content/documentation/code/javascript/loading.md +++ /dev/null @@ -1,2 +0,0 @@ -This page will describe the code execution process that occurs when a user -loads a page containing a diva.js viewer. diff --git a/legacy/docs/content/documentation/code/javascript/minification.md b/legacy/docs/content/documentation/code/javascript/minification.md deleted file mode 100644 index 682dc6a5..00000000 --- a/legacy/docs/content/documentation/code/javascript/minification.md +++ /dev/null @@ -1,60 +0,0 @@ -[Javascript minification](http://www.alistapart.com/articles/better-javascript-minification/) provides a way to shrink Javascript files that are being served so as to reduce bandwidth consumption. It also offers a way to combine multiple files into one, compressed file, while allowing developers to structure their code however they want. - -Below, you can find details on the minification process for diva.js. This is only necessary if you need to modify the Javascript files directly. - -[TOC] - -## Using the Closure Compiler - -We use the [Closure Compiler](http://code.google.com/closure/compiler/) to -create the minified file `diva.min.js`, which contains `utils.js`, `diva.js`, -and the .js files in the plugins/ directory. This is done via the command line, -using the .jar file available from the Closure Compiler website, as follows: - -```console -cat diva-utils.js diva.js > diva-full.js && java -jar /path/to/compiler/compiler.jar --js diva-full.js --js_output_file diva-min.js && rm diva-full.js -``` - -The compilation level `SIMPLE_OPTIMIZATION` is used, as the -`ADVANCED_OPTIMIZATION` level results in non-functioning code due to overly -aggressive renaming. This compilation level results in a file size decrease of -~65%. - -### Using fabric - -[Fabric](http://docs.fabfile.org/en/1.4.3/index.html) is a Python library for -automating tasks. If you install fabric and download the [developer version]({{ -ROOT_URL }}download#developer-version), you can use the `minify` command in the -included fabfile.py to build the Javascript: - -```console -fab minify -``` - -To build the Javascript and stylesheets at the same time, run - -```console -fab build -``` - -## Developing without minifying files - -When you're continually modifying the Javascript source, you don't want to have to re-minifiy any time you make a change. The alternative is to include the source files directly, in the `` element of your HTML page, as in the following example: - -```html - - - - - - - - - - -``` - -The script includes must be in the order shown above: jQuery, utils.js, -diva.js, then any plugins. Any other scripts you wish to include that depend on -diva should be included after the last diva-related script above (in this case, -`mycustomplugin.js`). diff --git a/legacy/docs/content/documentation/code/javascript/miscellaneous.md b/legacy/docs/content/documentation/code/javascript/miscellaneous.md deleted file mode 100644 index c8196178..00000000 --- a/legacy/docs/content/documentation/code/javascript/miscellaneous.md +++ /dev/null @@ -1,223 +0,0 @@ -Here are some Javascript development notes that didn't really fit in any other -section. - -[TOC] - -## Asynchronicity - -As is obvious from the name, AJAX requests are asynchronous. That means that -anything that depends on the request being complete has to be put in the -success callback function. For instance, if one wanted to append something to -the document (e.g. put an image at the very end of the document) it would have -to be put in the success function, probably near the end. If one were to do -something like this - -```javascript -someAjaxRequest(); -doSomethingAfterAjaxRequest(); // doesn't really happen after it -``` - -then `doSomethingAfterAjaxRequest()` will probably (though not always, -depending on how long the previous method takes) be executed before the AJAX -request is even complete, which is not the intended behaviour. Instead, one -could do this: - -```javascript -var someAjaxRequest = function(zoomLevel) { - $.ajax({ - // ... - success: function(data) { // success callback function - // ... - doSomethingAfterAjaxRequest(); // really! - } - }); -}; -``` - -## The Javascript console - -The console is a great developer's tool — just do - -```javascript -console.log("Testing to see if this prints out"); -``` - -to print debugging statements as you would in other languages. However, some -browsers that don't have a console (e.g., some older versions of Firefox -when Firebug is not opened) may refuse to run the Javascript at all if -`console` is referenced, so make sure console is opened if you're doing any -debugging (and delete references to it when you're done). This might seem -obvious, but it's easy to forget. - -## Extending the jQuery namespace - -In order to write individual methods for diva.js without having to either -pollute jQuery's plugin namespace or accept method calls through the first -parameter of the plugin call, a template from [Virgen Technologies - Building -an Object-Oriented jQuery -plugin](http://www.virgentech.com/blog/2009/10/building-object-oriented-jquery-plugin.html) -was used. This way, the methods and variables are not global, but are still -easily accessible. See the link for more information. - -## Maximum zoom level calculations - -Each document is tied to a specific maximum zoom level. This "maximum" zoom -level actually corresponds to the lowest maximum zoom level among all the pages -in the document, and it is this value that is used for calculating dimensions -at a particular zoom level. This is necessary to prevent zooming in more than -is actually possible based on the number of zoom levels of a particular page. -This is important to keep in mind when modifying the PHP script or porting it -to another language/environment. - -Furthermore, although pre-release versions of the document viewer required the -user to determine and input the maximum zoom level of a document, later -versions incorporated this maximum zoom level directly into the JSON data, -without any action on the part of the user necessary. However, to avoid sizing -issues in documents whose pages do not all have the same maximum zoom level, it -was necessary to determine, within `divaserve.php`, the maximum zoom level of -each page and output that in the JSON response. This fact may be relevant in -terms of support for other tile image formats or processing libraries, as the -VIPS library has a fairly specific way of calculating the number of zoom levels -- based on the dimensions of the image and the tile size - while other - libraries or formats may use different formulae. Currently, `divaserve.php` -assumes that the images are being processed using the VIPS library. In later -versions, we may add a layer of abstraction and increase the number of -processing libraries supported, but for now it is recommended to use VIPS. - -## The same-origin policy for AJAX requests - -In general, the AJAX request needs to be made within the same domain. For -instance, if your document viewer is located at -`http://www.yourdomain.com/viewer.php`, then the JSON-outputting script must -also be on the `http://www.yourdomain.com` domain, and on the same port. There -are, however, workarounds for this. For instance, the use of proxy_pass (within -your webserver) to proxy all requests for a certain URI (for example, `/php/`, -or `divaserve.php`) to a different domain should generally work. - -For instance, let's say you have your document viewer on one server, and both -IIPImage and divaserve.php on another server, and you want to proxy all -requests for `divaserve.php` to that other server. (It's necessary to have the -PHP script and the images located on the same server physically, although they -can be on different ports or subdomains.) In an nginx configuration file, this -could be done as follows: - -```nginx -server { - listen 123.456.78.90:80; - server_name yourdomain.com; - # ... - location /divaserve.php { - proxy_pass http://www.yourotherdomain.com/divaserve.php; - } - # ... -} -``` - -This will probably not be necessary, but if you can't put the PHP script and -the document viewer frontend on the same domain for any reason then this may be -useful. Other workarounds are possible as well, but this is the recommended one -as there is no significant drop in speed. The use of a JSONP callback was also -considered but then dropped because it led to truncating data, which broke the -viewer. - -## Virtual rendering - -The first versions of diva.js worked like this: all the pages were loaded -initially, but as blank images, and were only replaced with the actual tiles -once they entered the viewport. However, not only did this result in an initial -load time of several seconds, it also made scrolling fairly slow, especially -once a large portion of the document had been loaded in the browser's memory. -In the search for alternatives, I came across -[SlickGrid](https://github.com/mleibman/SlickGrid), whose implementation of -virtual rendering resulted in an extremely fast way to page through large -datasets, and managed to implement a similar technique in diva.js, whereby -pages that were scrolled out of the viewport are deleted from the DOM, and -pages that should be visible in the viewport are appended to it. This -considerably speeded up initial load time and scrolling speed, and resulted in -improved memory handling within the browser. Although the use of this technique -should not affect ordinary installation and usage, the knowledge that it is -being used might be important should it be necessary to make any edits to the -appending/deleting functions. See [[Code documentation]] for more. - -## loadRow image sizing - -When requesting images for grid mode within `loadRow`, images are requested at -a particular height, and the full image is always returned, instead of -disparate tiles (as in loadPage). However, the height of the images returned by -iipImage is often one or two pixels less than the requested height. This -results in an unseemly white border along the bottom and right edges. To -counter this, the requested height is 2 pixels greater than it should be, which -should result in an image that may be cut off vertically by a few pixels but -which will not be too short to fill the container. This appears to be an issue -with iipImage and the way image dimensions are calculated, so this workaround -will have to do for now. - -## The dragScrollable plugin - -To make only the selected element drag-scrollable, set `acceptPropagatedEvents` -to false; otherwise, if you want all children of that element (the images, for -instance) to be drag-scrollable as well, set `acceptPropagatedEvents` to true. -Typically, it will be set to true. - -## Data sent by the diva data server - -The following data is returned through each AJAX request: - -* `item_title`: The title of the document, as derived from the image - directory name. The title is derived by substituting spaces for hyphens - and then applying title case. For example, - -```text -this-is-an-image-directory-name -``` - - would result in a title of `This Is An Image Directory Name`. - -* `dims`: An array holding information related to the dimensions of the - document. Contains the following information: - * `a_hei`: The average height of all the images. This is used for - calculating the vertical padding if [`settings.adaptivePadding`](Code - documentation#adaptivePadding) is enabled. - * `a_wid`: The average width of all the images. This is used for - calculating the horizontal padding if - [`settings.adaptivePadding`](Code documentation#adaptivePadding) is - enabled. - * `mx_h`: The maximum height among all the images. Not actually used at - the moment. - * `mx_w`: The maximum width among all the images. Necessary for - calculating left offsets for each page (i.e. left and right padding). - * `t_hei`: The total height of all the images stacked together, - vertically. Necessary for calculating the total height of the - containing element. - * `t_wid`: The total width of all the images stacked together, - horizontally. Not used at the moment but will be used once there is an - option to switch orientation. -* `max_zoom`: the lowest maximum zoom level among all the pages of the - document. The usage of this variable is explained in [an above -section](#varying-max-zoom) -* `pgs`: An array holding the data for all the pages in the document. See - the explanation for the `pages` array in the [code documentation](MONKEY) - for more. - -The contents of the `pgs` array should be sorted chronologically - based on -their filename - prior to the request, and returned in a sorted order, so that -the user doesn't have to wait for it to be dynamically sorted. - -## Container IDs - -In order to allow more than one document viewer on a single page, we use the -`$.generateId` plugin (included in `diva-utils.js`) to generate a prefix for -the IDs of the elements of the document viewer. The first document viewer -instantiated on the page will have an ID prefix of `1-diva-`, the second -`2-diva-`, and so on. You can find all the IDs on the wiki page for Setup and -installation, in [Configuring the frontend: The -CSS](Installation#frontend-css). - -To target all instances of a specific type of element using CSS, you can use -`$=` (i.e., ends with). For example, to make the text within all title elements -grey, you could do something like this: -```css -div[id$=diva-title] { - color: #CCC; -} -``` diff --git a/legacy/docs/content/documentation/code/javascript/settings.md b/legacy/docs/content/documentation/code/javascript/settings.md deleted file mode 100644 index b405b797..00000000 --- a/legacy/docs/content/documentation/code/javascript/settings.md +++ /dev/null @@ -1,46 +0,0 @@ -diva.js uses a number of variables that behave like instance variables but are -instead stored in a private `settings` object. Some can be set by the user, as -explained in the [User-configurable settings](#user-configurable settings) -section below. Others cannot be modified by the user when creating the document -viewer, as their default values may be necessary for the document viewer for -work; these settings are listed in the [Other settings](#other-settings) -section. - -These settings are all referenced in the form `settings.variableName` within -the actual code. For instance, to access or change the fixedPadding while in -diva.js (or from a plugin), use `settings.fixedPadding`. - -[TOC] - -User-configurable settings --------------------------- - -These are settings that can be specified by the user when creating the diva.js -instance. They are found in the `defaults` array. All of them have values that -they default to if they are not specified by the user; however, some settings -need to be configured for the document viewer to function properly. - -These settings can be set upon instantiating the document viewer, in the -following format: - -```javascript -$('#diva-wrapper').diva({ - // ... - settingName: 'Some string', - anotherSettingName: false, - // ... -}); -``` - -The full list of such settings is below. - -{% include "documentation/configurable_settings.html" %} - -Other settings --------------- - -These are members of the `settings` object that can't be changed when -initialising a viewer. They can, however, be changed in a callback -function (i.e. [`settings.onReady`](#onReady)) or from within a plugin. - -{% include "documentation/other_settings.html" %} diff --git a/legacy/docs/content/documentation/code/stylesheets/how-less-works.md b/legacy/docs/content/documentation/code/stylesheets/how-less-works.md deleted file mode 100644 index 6c3341ff..00000000 --- a/legacy/docs/content/documentation/code/stylesheets/how-less-works.md +++ /dev/null @@ -1 +0,0 @@ -This section of the documentation is under construction. Please check back soon. diff --git a/legacy/docs/content/documentation/code/stylesheets/index.md b/legacy/docs/content/documentation/code/stylesheets/index.md deleted file mode 100644 index 6c3341ff..00000000 --- a/legacy/docs/content/documentation/code/stylesheets/index.md +++ /dev/null @@ -1 +0,0 @@ -This section of the documentation is under construction. Please check back soon. diff --git a/legacy/docs/content/documentation/code/stylesheets/mixins.md b/legacy/docs/content/documentation/code/stylesheets/mixins.md deleted file mode 100644 index 6c3341ff..00000000 --- a/legacy/docs/content/documentation/code/stylesheets/mixins.md +++ /dev/null @@ -1 +0,0 @@ -This section of the documentation is under construction. Please check back soon. diff --git a/legacy/docs/content/documentation/code/stylesheets/organisation.md b/legacy/docs/content/documentation/code/stylesheets/organisation.md deleted file mode 100644 index 6c3341ff..00000000 --- a/legacy/docs/content/documentation/code/stylesheets/organisation.md +++ /dev/null @@ -1 +0,0 @@ -This section of the documentation is under construction. Please check back soon. diff --git a/legacy/docs/content/documentation/code/stylesheets/variables.md b/legacy/docs/content/documentation/code/stylesheets/variables.md deleted file mode 100644 index 6c3341ff..00000000 --- a/legacy/docs/content/documentation/code/stylesheets/variables.md +++ /dev/null @@ -1 +0,0 @@ -This section of the documentation is under construction. Please check back soon. diff --git a/legacy/docs/content/documentation/customising/configuring-plugins.md b/legacy/docs/content/documentation/customising/configuring-plugins.md deleted file mode 100644 index 6c3341ff..00000000 --- a/legacy/docs/content/documentation/customising/configuring-plugins.md +++ /dev/null @@ -1 +0,0 @@ -This section of the documentation is under construction. Please check back soon. diff --git a/legacy/docs/content/documentation/customising/index.md b/legacy/docs/content/documentation/customising/index.md deleted file mode 100644 index c8caebf3..00000000 --- a/legacy/docs/content/documentation/customising/index.md +++ /dev/null @@ -1,7 +0,0 @@ -There are several ways of customising your document viewer installation. For -instance, you can pass in various settings when initialising the viewer, or can -edit the CSS to change the presentation. More information on that will be -available soon. - -See the "Security tips" page below for information on preventing access to the -document images in certain situations. diff --git a/legacy/docs/content/documentation/customising/look-and-feel.md b/legacy/docs/content/documentation/customising/look-and-feel.md deleted file mode 100644 index 6c3341ff..00000000 --- a/legacy/docs/content/documentation/customising/look-and-feel.md +++ /dev/null @@ -1 +0,0 @@ -This section of the documentation is under construction. Please check back soon. diff --git a/legacy/docs/content/documentation/customising/performance.md b/legacy/docs/content/documentation/customising/performance.md deleted file mode 100644 index 6c3341ff..00000000 --- a/legacy/docs/content/documentation/customising/performance.md +++ /dev/null @@ -1 +0,0 @@ -This section of the documentation is under construction. Please check back soon. diff --git a/legacy/docs/content/documentation/customising/security.md b/legacy/docs/content/documentation/customising/security.md deleted file mode 100644 index 206a31b7..00000000 --- a/legacy/docs/content/documentation/customising/security.md +++ /dev/null @@ -1,160 +0,0 @@ -Some organizations may wish to present their documents online for viewing to -the wider internet, but prevent users from downloading high-quality versions of -these images. This page explains some of the tradeoffs and techniques for -enhancing document security, and is provided so that our users can understand -their options for viewing their image collections online. - -In short, it is not possible to completely "protect" your images while -maintaining full functionality in Diva. Many functions in Diva depend on having -access to the full image. Since Diva is simply Javascript and HTML operating in -browser, it is always possible to reconstruct how it accesses the images, and -replicate that. - -It is possible, however, to put in place measures to discourage this. This page -presents information on how Diva serves its images, and some things that may be -done to prevent access. - -[TOC] - -How Diva serves images ----------------------- - -High-resolution images in Diva are served by requesting smaller image regions -("tiles") of the larger page, and serving only the regions of the image that -the user is currently viewing. This means that all other pages, or even regions -of a large image, are not downloaded until the user scrolls to that part of the -document. - -The tiled image serving is accomplished using the IIP Image Server, which takes -a URL from the client and serves out an image corresponding to that request. -Consider the following URL: - -```text -http://example.com/fcgi-bin/iipsrv.fcgi?FIF=/images/book/001.tif&JTL=3,3 -``` - -This URL gives the path to the IIP Image Server software -(`/fcgi-bin/iipsrv.fcg`), with the path to the pre-tiled image -(`FIF=/images/book/001.tif`) and the tile region of the image to serve -(`JTL=3,3`). This region corresponds to the fourth zoom level, fourth tile -(zoom levels and images are numbered beginning at zero). - -This means that the images that Diva serves as tiled images (in scroll and zoom -mode) are "chopped up" versions of the full image, which makes it difficult -(but not impossible) to download the full image. A person wanting access to the -full image would have to re-assemble it from all the tiles. - -However, IIP also allows serving non-tiled versions of the same images. -Consider this URL: - -```text -http://example.com/fcgi-bin/iipsrv.fcgi?FIF=/images/book/001.tif&HEI=291&CVT=JPG -``` - -Note the `HEI=291&CVT=JPG` arguments. This instructs IIP to serve out the full -image, resize it to 291 pixels high, and serve it as a JPEG image. This will -load the full, untiled image in the user's browser, giving them access to the -full page image. In Diva, this is used extensively in the grid view, canvas -view, and download plugins. - -For site administrators wanting users to view their images, but not download -them, this opens up a means of accessing the full quality image. While users -will need to do this one at a time for the full document, it is possible to -write a "scraper" that will automatically harvest all the images from a -document. - -Preventing access ------------------ - -### Disabling - -Disabling the grid view, canvas view, and download options are not a means of -preventing image downloads. This may "hide" the link to the full image a little -better, but users can still access them. That said, if you do wish to disable -these features (possibly in addition to the other methods listed below), you -can do so in the following ways: - -* Disabling grid view: set - [`enableGrid`](../code/javascript/settings#enableGrid) to false to disable - the grid icon. Note that this doesn't completely prevent users from accessing - grid view; it only hides the icon for it. -* Disabling the canvas plugin: set - [`enableCanvas`](../code/javascript/settings#enableCanvas) to false. -* Disabling the download plugin: set - [`enableDownload`](../code/javascript/settings#enableDownload) to false. - -### Check incoming referrer - -Perhaps the easiest method of discouraging downloads is to proxy your image -server and place a special rule to prevent direct access to the files. For -example, in our test server we have the following setup for our Nginx web -server: - -```nginx -location /fcgi-bin/ { - if ($http_referer !~ ^(http://mydomain.com) ) { - return 405; - } - proxy_pass http://localhost:9000/fcgi-bin/; -} -``` - -The `if` block checks the incoming referral header of the request against the -domain that is set. If the user is using the Diva viewer on a web page hosted -at `mydomain.com`, it will pass through to the image server, proxied at -`http://localhost:9000`. If, however, the user attempts to view the image by -directly accessing the IIP image server (as in the examples in the previous -section), the "Referer" header will not be set to `mydomain.com` and the server -will return a 405 (Not Allowed) HTTP error. - -While this is an effective deterrent for viewing the images in the browser, -this can also be "spoofed" by a script, adding in the referrer in the request -header and therefore bypassing the check. - -### Proxy IIP URLs through a script - -An even more effective means would be to proxy the incoming IIP URL through a -server-side script that contains a special key appended to the request. For -example, instead of setting the IIP Image Server URL in the Diva settings to go -directly to the IIP Image Server, e.g.: - -```javascript -iipServerBaseUrl: "http://example.com/fcgi-bin/iipsrv.fcgi?FIF=/images/book/" -``` - -you could proxy it through a PHP or Python script running on the server: - -```javascript -iipServerBaseUrl: "http://example.com/fcgi-bin/imageserve.php?FIF=/images/book/" -``` - -This `imageserve.php` could then pass all IIP arguments transparently through -to the image server, but append a "secret" key to the request. So the actual -request to the image server would be: - -```text -"http://example.com/fcgi-bin/iipsrv.fcgi?FIF=/images/book/&HEI=291&CVT=JPG&SECRET=mysecretword" -``` - -Then, employing the same method used to check the incoming Referrer header -shown above, the webserver can be configured to only accept requests that -contain the SECRET query parameter. - -```nginx -location /fcgi-bin/ { - if ($args !~ "SECRET=mysecretword" ) { - return 405; - } - proxy_pass http://localhost:9000/fcgi-bin/; -} -``` - -To bypass this the user would need to know the correct value for the SECRET -parameter; however, since the PHP or Python proxy script is executed on the -server, the SECRET parameter will not be exposed to the public and IIP will -ignore it. - -While this method is more effective, it means that every incoming request will -need to be processed by a script, thereby injecting the PHP or Python -interpreter in the "middle" and potentially slowing down response time. The -effect of this, however, should be minimal. diff --git a/legacy/docs/content/documentation/customising/writing-plugins.md b/legacy/docs/content/documentation/customising/writing-plugins.md deleted file mode 100644 index 6c3341ff..00000000 --- a/legacy/docs/content/documentation/customising/writing-plugins.md +++ /dev/null @@ -1 +0,0 @@ -This section of the documentation is under construction. Please check back soon. diff --git a/legacy/docs/content/documentation/image-preprocessing/image-formats.md b/legacy/docs/content/documentation/image-preprocessing/image-formats.md deleted file mode 100644 index 6c3341ff..00000000 --- a/legacy/docs/content/documentation/image-preprocessing/image-formats.md +++ /dev/null @@ -1 +0,0 @@ -This section of the documentation is under construction. Please check back soon. diff --git a/legacy/docs/content/documentation/image-preprocessing/index.md b/legacy/docs/content/documentation/image-preprocessing/index.md deleted file mode 100644 index 6c3341ff..00000000 --- a/legacy/docs/content/documentation/image-preprocessing/index.md +++ /dev/null @@ -1 +0,0 @@ -This section of the documentation is under construction. Please check back soon. diff --git a/legacy/docs/content/documentation/image-preprocessing/tiled-images.md b/legacy/docs/content/documentation/image-preprocessing/tiled-images.md deleted file mode 100644 index 6c3341ff..00000000 --- a/legacy/docs/content/documentation/image-preprocessing/tiled-images.md +++ /dev/null @@ -1 +0,0 @@ -This section of the documentation is under construction. Please check back soon. diff --git a/legacy/docs/content/documentation/image-preprocessing/using-processing-scripts.md b/legacy/docs/content/documentation/image-preprocessing/using-processing-scripts.md deleted file mode 100644 index 6c3341ff..00000000 --- a/legacy/docs/content/documentation/image-preprocessing/using-processing-scripts.md +++ /dev/null @@ -1 +0,0 @@ -This section of the documentation is under construction. Please check back soon. diff --git a/legacy/docs/content/documentation/index.md b/legacy/docs/content/documentation/index.md deleted file mode 100644 index ffaa3846..00000000 --- a/legacy/docs/content/documentation/index.md +++ /dev/null @@ -1,13 +0,0 @@ -# Documentation - -This documentation is for version 2.0 of -[diva.js](http://ddmal.music.mcgill.ca/diva), released on September 23, 2012. -Here, you will find instructions on using, installing, configuring and -modifying the viewer. - -Use the navigation list on the left to locate the information you are searching -for. - -Some parts of the documentation are still under construction. If you have any -questions or feedback, please [let us -know](mailto:andrew.hankinson@mail.mcgill.ca)! diff --git a/legacy/docs/content/documentation/release-notes/1.0.0.md b/legacy/docs/content/documentation/release-notes/1.0.0.md deleted file mode 100644 index e69de29b..00000000 diff --git a/legacy/docs/content/documentation/release-notes/1.1.0.md b/legacy/docs/content/documentation/release-notes/1.1.0.md deleted file mode 100644 index e69de29b..00000000 diff --git a/legacy/docs/content/documentation/release-notes/1.1.1.md b/legacy/docs/content/documentation/release-notes/1.1.1.md deleted file mode 100644 index e69de29b..00000000 diff --git a/legacy/docs/content/documentation/release-notes/2.0.0.md b/legacy/docs/content/documentation/release-notes/2.0.0.md deleted file mode 100644 index e69de29b..00000000 diff --git a/legacy/docs/content/documentation/setup/backend/data-server.md b/legacy/docs/content/documentation/setup/backend/data-server.md deleted file mode 100644 index 6c3341ff..00000000 --- a/legacy/docs/content/documentation/setup/backend/data-server.md +++ /dev/null @@ -1 +0,0 @@ -This section of the documentation is under construction. Please check back soon. diff --git a/legacy/docs/content/documentation/setup/backend/iipimage.md b/legacy/docs/content/documentation/setup/backend/iipimage.md deleted file mode 100644 index 6c3341ff..00000000 --- a/legacy/docs/content/documentation/setup/backend/iipimage.md +++ /dev/null @@ -1 +0,0 @@ -This section of the documentation is under construction. Please check back soon. diff --git a/legacy/docs/content/documentation/setup/backend/index.md b/legacy/docs/content/documentation/setup/backend/index.md deleted file mode 100644 index 6c3341ff..00000000 --- a/legacy/docs/content/documentation/setup/backend/index.md +++ /dev/null @@ -1 +0,0 @@ -This section of the documentation is under construction. Please check back soon. diff --git a/legacy/docs/content/documentation/setup/frontend/html.md b/legacy/docs/content/documentation/setup/frontend/html.md deleted file mode 100644 index 29c2527f..00000000 --- a/legacy/docs/content/documentation/setup/frontend/html.md +++ /dev/null @@ -1,111 +0,0 @@ -This page will explain the HTML edits and DOM structure required by diva.js. - -[TOC] - -Document head -------------- - -The required Javascript and CSS dependencies must be included in the `` -element of the HTML file. - -### CSS includes - -The only required CSS file is `diva.min.css` (found under `build/css/` in the -download package). This file is responsible for styling the internal components -of diva.js and many of the attributes are required in order for diva.js to work -properly. The `demo.css` file included in the `demos/` directory is purely for -making the demos look nice (in terms of fonts, sizing, margin/padding, etc). If -you have your own custom CSS you likely won't need to use it, although there -are certain attributes that may be desirable to set for the certain elements. -See the `demo.css` file for more information. - -If you're including both files, the relevant HTML would look like this: - -```html - - - - - - -``` - -### Javascript includes - -The only dependency that is not included with diva is jQuery. You can either -use a CDN, such as Google's, or host it yourself. It is recommended that you -use the latest version, or at least 1.7+. - -You'll also have to include the diva.js source (file `diva.min.js` under -`build/js`), as well as the script that actually instantiates the viewer -instance. The latter could also be contained within the head, in a ` - - - - -``` - -### Example document head - -Combining the above examples, we would get a `` that looked something -like this: - -```html - - - - - - - - - - -``` - -It's usually a good idea to put the stylesheets above the Javascript, to ensure -that everything looks right even if the Javascript hasn't yet loaded. It's also -possible to put the Javascript in the body of the document as opposed to the -head, to ensure that the document structure is loaded before attempting to -execute the Javascript. - -Document body -------------- - -The required DOM structure is very basic. There needs to be a `
` (or other -block-style container element, although for best results you should use a div -or something else with minimal built-in browser styling), preferably with an ID -such as `diva-wrapper` or `diva-container` or something similar. - -At its simplest, it would look like this: - -```html - -
- -``` - -For instructions on setting up multiple viewers on a page, see the -[multiple viewers section](multiple-viewers). - -Sample HTML files ------------------ - -You can find some sample HTML files in the download package, within the demo/ -directory: - -* `single.html` contains a basic document viewer setup; -* `double.html` demos two document viewers on one page; -* and `integrated.html` shows a document viewer nicely integrated into an - existing page. diff --git a/legacy/docs/content/documentation/setup/frontend/index.md b/legacy/docs/content/documentation/setup/frontend/index.md deleted file mode 100644 index 4dd98c63..00000000 --- a/legacy/docs/content/documentation/setup/frontend/index.md +++ /dev/null @@ -1,3 +0,0 @@ -This section will describe the HTML and Javascript edits that need to be made -to set up diva.js. You can also find instructions on multiple-viewer and -integrated setups. diff --git a/legacy/docs/content/documentation/setup/frontend/integrated.md b/legacy/docs/content/documentation/setup/frontend/integrated.md deleted file mode 100644 index 6c3341ff..00000000 --- a/legacy/docs/content/documentation/setup/frontend/integrated.md +++ /dev/null @@ -1 +0,0 @@ -This section of the documentation is under construction. Please check back soon. diff --git a/legacy/docs/content/documentation/setup/frontend/javascript.md b/legacy/docs/content/documentation/setup/frontend/javascript.md deleted file mode 100644 index 89238b84..00000000 --- a/legacy/docs/content/documentation/setup/frontend/javascript.md +++ /dev/null @@ -1,70 +0,0 @@ -In this section, you will find instructions on instantiating a viewer and -configuring it via Javascript. - -[TOC] - -Where to place it ------------------ - -The Javascript can either go into a separate .js file (e.g. `diva-setup.js`), -or it can be placed directly in the document head or body. The former is -recommended for performance reasons (as it can be more easily cached that way) -but the latter may be easier in certain cases, such as when the settings need -to be dynamically generated by the script that generates the page. - -Other than that, there is no significant difference between the two methods. -For simplicity, this section will assume that the Javascript is contained in a -separate .js file. - -The instantiation code ----------------------- - -When creating a viewer, you will need to specify (at minimum) three settings: the -URL to the diva data server, the URL to the IIPImage instance (including the -path to the image directory) and the name of the directory containing the -images (relative to the root defined in the diva data server script). - -For example, if the desired container element for the viewer has an ID of -`diva-wrapper`, the viewer could be instantiated as follows: - -```javascript -$(document).ready(function () { - $('#diva-wrapper').diva({ - iipServerURL: "http://test.com/path/to/iipsrv.fcgi?FIF=/path/to/imgs", - divaserveURL: "/path/to/divaserve.php", - imageDir: "some-directory-name" - }); -}); -``` - -If you're not familiar with jQuery, here's what the above does: - -* The first line ensures that the code below is only executed when the document - has finished loading; -* The `$` is an alias to the jQuery object; -* `$('#diva-wrapper')` selects the element with ID `diva-wrapper`; -* and the `diva` method on the selected `diva-wrapper` element initialises a - Diva object with the settings object that is passed as a parameter. - -That's enough to create the viewer and have it display the document images -specified by the divaserve script. - -Of course, you can pass in other settings through this method as well - see the -[setting reference](../../code/javascript/settings) for more information on -this. - -Accessing the Diva object -------------------------- - -The Diva object is stored within the container element (the one with ID -`diva-wrapper` in the above case) and can be accessed via the `data` method -provided by jQuery: - -```javascript -var diva = $('#diva-wrapper').data('diva'); -``` - -The variable `diva` now holds the Diva object, which can be manipulated or -queried via its public functions. See the -[public function reference](../../code/javascript/functions#public-functions) -for more. diff --git a/legacy/docs/content/documentation/setup/frontend/multiple-viewers.md b/legacy/docs/content/documentation/setup/frontend/multiple-viewers.md deleted file mode 100644 index 3aa79ef6..00000000 --- a/legacy/docs/content/documentation/setup/frontend/multiple-viewers.md +++ /dev/null @@ -1,2 +0,0 @@ -See the file `demos/double.html` in the download package for a example of a -multiple-viewer setup (with two viewers). diff --git a/legacy/docs/content/documentation/setup/index.md b/legacy/docs/content/documentation/setup/index.md deleted file mode 100644 index c6da15c2..00000000 --- a/legacy/docs/content/documentation/setup/index.md +++ /dev/null @@ -1,12 +0,0 @@ -Setting up diva.js requires setting up two different parts: the backend, -consisting of the image server and the data server, and the frontend, -consisting of the HTML, Javascript, stylesheets and images. - -To set up the backend, you will need root access to a server or otherwise have -the ability to install software, and will also need access to a server capable -of running either PHP or Python processes (it could be the same server). - -To set up the frontend, you simply need access to a server from on you can -host HTML, stylesheet, Javascript and image files. You can alternatively -integrate the diva.js frontend into a more complicated system, such as a CMS -(like Drupal) or a web framework (like Django, Tornado). diff --git a/legacy/docs/content/documentation/using/browser-support.md b/legacy/docs/content/documentation/using/browser-support.md deleted file mode 100644 index 9393ff27..00000000 --- a/legacy/docs/content/documentation/using/browser-support.md +++ /dev/null @@ -1,12 +0,0 @@ -Here is a table summarising the supported browsers and any things that don't -work, etc. - -Browser | Versions | Basic viewer support | Canvas plugin support | Comments --------- | -------- | -------------------- | --------------------- | -------- -{% docs_image "ie" %} | IE9+ | Yes | Yes | -- -{% docs_image "ie" %} | IE8 | Yes | No | The canvas element is not supported in IE8. -{% docs_image "ie" %} | IE7- | No | No | IE7 and older is not supported at this time. -{% docs_image "chrome" %} | Google Chrome (any version) | Yes | Yes | -- -{% docs_image "safari" %} | Safari (any version) | Yes | Yes | -- -{% docs_image "opera" %} | Opera (any version) | Yes | Yes | -- -{% docs_image "firefox" %} | Firefox (any version) | Yes | Yes | -- diff --git a/legacy/docs/content/documentation/using/desktop.md b/legacy/docs/content/documentation/using/desktop.md deleted file mode 100644 index f3a4852d..00000000 --- a/legacy/docs/content/documentation/using/desktop.md +++ /dev/null @@ -1,202 +0,0 @@ -The diva.js viewer is best viewed on a desktop/laptop computer, using a modern -browser such as Google Chrome, Firefox, Safari, Opera, or Internet Explorer 9. -Other browsers/devices are supported as well, although certain functionality -may be limited or disabled; for more information on this subject, consult our -[browser support](../browser-support) page. - -Below, you will find a comprehensive overview of the standard features of -diva.js, complete with usage instructions and screenshots. - -For usage instructions on touch devices, such as the iPad or iPod touch, see -[mobile/tablet usage instructions](../mobile). - -[TOC] - -Basic navigation ----------------- - -The most basic functionality is the ability to navigate the document, by -scrolling through the pages or jumping to a particular page as desired. - -### Scrolling with the mouse - -Scrolling with the mouse can be accomplished using the scroll wheel on the -mouse or touchpad (if present), by dragging the scrollbar that appears within -the document viewer pane, or by clicking anywhere within the document viewer -and dragging it in the direction you want to move. - -### Scrolling with the keyboard - -You can use certain keys to scroll vertically through the document (although -they can be disabled for a particular viewer by the site administrator.) The -keys are: - -* the "up" arrow key, to scroll up by a small amount -* the "down" arrow key, to scroll down by a small amount -* the "spacebar" key, to scroll down by a slightly greater amount (note that - spacebar scrolling is disabled by default) -* the "page up" key, to scroll up by the height of the document viewer pane -* the "page down" key, to scroll down by the height of the document viewer - pane (see the diagram below) -* the "home" key, to scroll to the very top of the document -* the "end" key, to scroll to the very bottom of the document - -The diagram below illustrates the scroll amounts for the various keys: - -{% docs_image "scroll-amounts" %} - -Note that while the up, down, and spacebar keys only work if the focus of your -cursor is on the document viewer pane (e.g., if you most recently clicked -something within it or have used the scrollbar), the other keys work when your -focus is anywhere in the document. - -At the present time, only vertical key-scrolling is supported. - -### Jumping to a page - -You can also jump to a specific page by typing in the number of the page into -the "Go" box near the top right corner, as indicated in the screenshot below: - -{% docs_image "jumping-to-a-page" %} - -Press the "Go" button or hit the enter key to jump to the entered page. If you -enter an invalid page number - for instance, something that is not a number, -or a number greater than the total number of pages, an alert box will pop up -informing you of the fact. - -Fullscreen mode ---------------- - -To enter fullscreen mode, click the icon that appears at the top left corner -of the page: - -{% docs_image "fullscreen-icon" %} - -In some cases, the viewer will be integrated within a larger page and the icon -will appear at a different location, as in the following screenshot: - -{% docs_image "integrated-fullscreen-icon" %} - -This will result in the document viewer pane taking over the entire browser -window, as in the following screenshot: - -{% docs_image "fullscreen-mode" %} - -To exit fullscreen mode, simply click the same icon (in the top left corner) -again. - -If the aforementioned icon does not appear at either of the expected locations, -then the site administrator has likely disabled the fullscreen icon -functionality. In this case, it should still be possible to activate fullscreen -mode by modifying the URL; see the -[Manipulating the hash parameters](#manipulating-the-hash-parameters) section -for more information. - -Grid view ---------- - -There are two different "views" in a standard diva.js installation: document -view, and grid view. Document view is usually the default view, and consists of -pages stacked on top of each other vertically: - -{% docs_image "document-view" %} - -Grid view, on the other hand, consists of 2 or more pages per row. To enter -grid view, click the icon near the top right of the viewer, to the left of the -link icon: - -{% docs_image "grid-icon" %} - -By default, the number of pages per row is adjustable via a slider in the top -left corner (although this functionality may be disabled for a particular -document). The standard range for this slider is 2 pages per row to 8 pages per -row, shown respectively in the following screenshots: - -{% docs_image "grid-view-2" %} - -{% docs_image "grid-view-8" %} - -As with the fullscreen icon, if the grid icon does not show up, then it has -likely been disabled; however, it should still be possible to activate grid -view or change the number of pages per row by modifying the URL. See the -[Manipulating the hash parameters](#manipulating-the-hash-parameters) section -section for more information. - -Sharing a link --------------- - -### Grabbing the current URL - -Sometimes, you'll want to link to a particular state of the document viewer so -that you can share it with someone else or post it somewhere. To facilitate it, -diva.js comes with a link feature that lets you grab the URL to what you're -currently looking at. If you're in document view, clicking on the link icon at -the top right of the document viewer pane will open a small window directly -underneath it, containing a link (illustrated in the screenshot below). Click -anywhere in the link field and the entire link will be selected, after which -you can copy it with CTRL+C. - -{% docs_image "link-icon" %} - -The link icon appears slightly differently in fullscreen mode: - -{% docs_image "fullscreen-link-icon" %} - -Anyone who accesses that link will be brought to a page identical (ignoring -differences in window size or browser/platform) to what you were viewing. If -you wish to test it, open a new tab or window and paste it in the URL bar. -You can also enter it in the URL bar for the current tab or window, but that -doesn't work in all browsers and if it does, may require you to presse tner -twice. - -### Manipulating the URL hash parameters - -Of course, using the link icon is not the only way to get the link to a given -view. You can also create a link yourself. For example, if the document viewer -is located at http://www.example.com/diva, and you wish to show a viewer in -grid view with 5 pages per row, you could construct the following URL: - -```text -http://www.example.com/diva#g=true&n=5 -``` - -Or, if you wanted to link to the viewer in fullscreen mode: - -```text -http://www.example.com/diva#f=true -``` - -There are several other options you can set. The full list of hash parameters -is below: - -* `f`: `true` or `false`. Controls fullscreen mode. -* `g`: `true` or `false`. Determines whether or not the user is in grid view. -* `z`: an integer between the minimum zoom level and the maximum zoom level, - inclusive. -* `n`: an integer between the minimum number of pages per row and the maximum - number of pages per row, inclusive. -* `i`: the filename of the page you wish to jump directly to. Note that this - will only work if the site administrator has configured the viewer to take in - a page filename as opposed to a page number. This is the default behaviour. -* `p`: the page number (starting from 1). Not always accepted; see above. -* `y`: the number of pixels that you wish to scroll, vertically, from the top - of the current page. Can be any integer (positive or negative). A positive - `y` value will result in downward scrolling, and a negative value will - result in upward scrolling. -* `x`: the number of pixels that you wish to scroll, horizontally, from the - default centred position. Can be any integer (positive or negative). A - positive `x` value will result in scrolling to the right, and a negative - value will result in scrolling to the left. - -Note that if the value of a hash parameter is invalid (e.g., a negative number -for the zoom level, or something other than "true" or "false" for a boolean -parameter), then the value will be ignored and the document viewer will fall -back on the default value as set by the site administrator. - -Using the plugins ------------------ - -By default, diva.js ships with two enabled plugins, which you can activate by -clicking on the relevant icon near the top left corner of every page. To learn -how to use any of the plugins that ship with diva.js by default, see the -[plugin documentation](../plugins). diff --git a/legacy/docs/content/documentation/using/index.md b/legacy/docs/content/documentation/using/index.md deleted file mode 100644 index f7270011..00000000 --- a/legacy/docs/content/documentation/using/index.md +++ /dev/null @@ -1,8 +0,0 @@ -Although the viewer was designed to be simple to use, there are quite a few -features whose usage (or even existence) may not be obvious to someone using -it. This section of the documentation aims to offer a comprehensive listing of -all the features of diva.js, complete with screenshots and explanations. - -Here, you can find instructions on using diva.js from a desktop browser as well -as from a touch device. Additionally, we have a table listing support for -various browsers. diff --git a/legacy/docs/content/documentation/using/mobile.md b/legacy/docs/content/documentation/using/mobile.md deleted file mode 100644 index a7ef61ed..00000000 --- a/legacy/docs/content/documentation/using/mobile.md +++ /dev/null @@ -1,87 +0,0 @@ -{% load extras %} - -diva.js currently supports a limited variety of touch devices, most notably -the iPad. The viewer has also been tested on Android, the iPhone, and the iPod -Touch, and may work on other devices as well. On all touch devices, performance -is likely to be worse than on desktop computers, due to hardware limitations. - -Below, you will find some usage tips for touch devices. All of the features -below have been tested on the second generation iPad, but may not be fully -supported on other devices. If you've been able to test out the viewer on -other devices, please [let us know](mailto:andrew.hankinson@mail.mcgill.ca)! - -The following features behave more or less the same on touch devices and -desktop computers: toggling fullscreen mode, toggling grid view, linking, -and the "go to page" feature for jumping to a specific page. Zooming by -double-clicking, scrolling using the scrollbar, and scrolling using specific -keys are not supported. - -[TOC] - -Pinch zooming -------------- - -To zoom in or out, use two fingers to initiate the "pinch-to-zoom" gesture, -by bringing your fingers closer together to zoom in or moving them apart to -zoom out, as shown in the following diagram ([source](http://commons.wikimedia.org/wiki/File:Pinch_zoom.png)): - -{% docs_image "pinch-zoom" %} - -You can do this anywhere on the page. Note that the default action -of zooming in on the _entire_ page (for Apple touch devices, and possibly -others) as a result of this gesture is disabled. - -You can also zoom in and out using the zoom slider when in document view. - -One-finger scroll ------------------ - -To scroll through the document viewer, simply flick upward or downward with -one finger (with the finger starting within the document viewer pane) to -scroll up or down, respectively. There is limited inertial scrolling support, -meaning that you will continue to scroll for a short period of time after -you have finished the flick gesture. - -If you wish to go to a specific page, just the "go to page" feature as you -would on a desktop computer. - -Adding the page to the home screen on iOS ------------------------------------------ - -If you wish to be able to access a page more easily on an Apple touch device, -you can add an icon for it to your home screen. There should be a button next -to the URL bar that, when pressed, gives you the option to "Add to Home -Screen". Select that option, and give it a suitable name. You should now be -able to quickly access the viewer from the home screen of your touch device -simply by tapping on its icon. You don't need to load up Safari, and indeed, -when the page is loaded, it looks less like a webpage and more like a native -application. All the features that were available in the regular view are -still available in this view. - -Rotating the device -------------------- - -If you change the orientation of the device (from portrait to landscape or -vice-versa) then the document viewer pane will resize to fill the available -space. This behaviour may be disabled for a particular viewer, which is useful -when there are other elements on the page and the viewer needs to be a fixed -width or height. - -Limitations to the canvas plugin --------------------------------- - -Due to resource constraints on touch devices, there are some limitations to -use of the canvas plugin. It is not possible to zoom in beyond the third -zoom level (level 3). This is due to a hard limit that Apple has imposed -on devices with 256 MB of RAM or more (e.g., the iPad, all generations) - the -maximum size of a canvas element is 5 megapixels, and 2 is the greatest zoom -level for which no image would result in a canvas element exceeding 5 -megapixels. - -For devices with less than 256 MB of RAM, the limit is even less - 3 -megapixels. Luckily, a maximum zoom level of 2 is still fine, as such an image -would result in a canvas element of 2 megapixels, well under the limit. - -Other canvas functionality should be present, although it may take longer -to load or adjust an image than it would on a desktop computer. Additionally, -inertial scrolling is enabled. diff --git a/legacy/docs/content/documentation/using/plugins.md b/legacy/docs/content/documentation/using/plugins.md deleted file mode 100644 index f5927182..00000000 --- a/legacy/docs/content/documentation/using/plugins.md +++ /dev/null @@ -1,90 +0,0 @@ -{% load extras %} - -diva.js comes with two plugins that are enabled by default. Each plugin adds a -small icon to the top left of every page in document view which, when clicked, -activates the plugin: - -{% docs_image "plugin-icons" %} - -These icons are for the canvas plugin and the download plugin respectively. You -can find an explanation of what they do below. Note that one or both may be -disabled for a particular document viewer, or could be configured with -different settings. Instructions on configuring the default plugins is -available [here](../customising/configuring-plugins). - -Additionally, site administrators can create custom plugins. More information -on that is available [here](../../customising/writing-plugins). - -[TOC] - -The canvas plugin ------------------ - -{% docs_image "canvas-icon" %} - -This plugin provides a way to perform basic image manipulation. Clicking on the -icon will open a pane that takes over the browser window (in a similar manner -to fullscreen mode). On the left side of the screen is a small "tools" window -containing a miniature preview of the image and several sliders that can adjust -to modify the image. - -The sliders you can adjust are as follows: - -* Contrast. Default range: -1.00 to 3.00. Initial value: 1.00. -* Brightness. Default range: -100 to 150. Initial value: 0. -* Rotation (clockwise). Default range: 0 to 359°. Initial value: 0°. -* Zoom level. Default range: the minimum zoom level to the maximum zoom level - (less on touch devices; see the last paragraph). Initial value: the current - zoom level. -* Red channel (the amount of red in the image). Default range: -50 to 50. - Initial value: 0. A negative value results in an image that contains more - teal. -* Green channel. Default range: -50 to 50. Initial value: 0. A negative value - results in an image that is more magenta. -* Blue channel. Default range: -50 to 50. Initial value: 0. A negative value - results in an image that is more yellow. - -To adjust a particular slider, click on the relevant icon. When you move the -slider, the preview image will be updated immediately, but the larger image is -only updated when you click the "Apply" button, for performance reasons. For -especially large images, applying changes can take a very long time (locking -the browser in the process), so it's a good idea to be cautious about viewing -images at high zoom levels, especially if you're on a low-powered computer. - -To navigate the image, you can click-and-drag (one-finger scroll on a touch -device), use the scroll wheel or scrollbars, or click on the preview (the blue -box shows you where you currently are). You can see a screenshot of this -feature in action below. - -{% docs_image "canvas-demo" %} - -diva.js will remember any changes you've applied, so that the next time you -activate this plugin for the same image, the changes that you last applied will -be reapplied. You can tell if a page has had changes applied to it by looking -at the colour of the plugin icon in document view — if it is blue, then -changes have been applied: - -{% docs_image "modified-canvas-icon" %} - -To restore the default view and tell diva.js to stop remembering your changes, -simply click "Reset all" then "Apply". Note that diva.js can only remember -changes that you've made with the same computer and browser that you are -currently using, and while it does persist between browser/computer restarts -you can force it to forget any stored changes by clearing your localStorage. - -This plugin will work in all browsers that support the HTML5 `canvas` element, -including IE9+, Firefox 2+, Safari 3.1+, Chrome 4+, and Opera 9+. - -If you are viewing the plugin on a touch device (e.g., an iPad), then there are -some limitations to using this plugin due to hardware constraints. More -on that is available [here](../mobile#limitations-to-the-canvas-plugin). - -The download plugin -------------------- - -{% docs_image "download-icon" %} - -This plugin allows you to download an image for the page, at the current zoom -level, in JPEG format. Click on the icon and a new tab or window will be -opened to a page containing only the image. To download it to your computer, -right-click the image and save it. diff --git a/legacy/docs/content/download.md b/legacy/docs/content/download.md deleted file mode 100644 index 6f700827..00000000 --- a/legacy/docs/content/download.md +++ /dev/null @@ -1,40 +0,0 @@ -{% include "normal_header.html" %} - -# Downloading diva.js - -The latest version of diva is **{{ LATEST_VERSION }}**. The download packages -below include the Javascript, CSS, and image files necessary to set up the -frontend of diva. Also included are the data server scripts (one written in -PHP, and one in Python) and some example HTML pages to make setting up diva -easier. - -{% include "download_links.html" %} - -## Developer version - -If you want to get the developer version of diva.js, complete with source -files, unit tests, build scripts, and documentation, use the following download -links. The source for the most recent release (the `master` branch) can be -found here: - -* [Zip file](https://github.com/DDMAL/diva.js/zipball/master) -* [Compressed tar file](https://github.com/DDMAL/diva.js/tarball/master) - -You can find the latest snapshot of the code in the `develop` branch here: - -* [Zip file](https://github.com/DDMAL/diva.js/zipball/develop) -* [Compressed tar file](https://github.com/DDMAL/diva.js/tarball/develop) - -### Using git - -Alternatively, if you wish to get the entire development history (including -both the master and the develop branch) using git, you can use the following -command: - -``` -git clone git://github.com/DDMAL/diva.js.git -``` - -The `master` branch contains the latest release, while the `develop` branch has the latest, bleeding-edge code, and should be considered be unstable. - -{% include "normal_footer.html" %} diff --git a/legacy/docs/content/examples.md b/legacy/docs/content/examples.md deleted file mode 100644 index 70639c66..00000000 --- a/legacy/docs/content/examples.md +++ /dev/null @@ -1,10 +0,0 @@ -{% include "normal_header.html" %} - -# Examples - -We've set up some demo installations with a variety of different -configurations. Feel free to play around with them. - -{% include "examples_grid.html" %} - -{% include "normal_footer.html" %} diff --git a/legacy/docs/content/index.md b/legacy/docs/content/index.md deleted file mode 100644 index b1d99e4a..00000000 --- a/legacy/docs/content/index.md +++ /dev/null @@ -1,4 +0,0 @@ -{% include "screenshots.html" %} -{% include "block_links.html" %} - -{% include "footer.html" %} diff --git a/legacy/docs/fabfile.py b/legacy/docs/fabfile.py deleted file mode 100644 index 09494f1b..00000000 --- a/legacy/docs/fabfile.py +++ /dev/null @@ -1,22 +0,0 @@ -import os - -from fabric.api import local, cd, put - -from src import settings - - -def build(): - with cd(os.path.dirname(__file__)): - # Generate the site - print local("python src/generate.py") - # Copy the static directory over - print settings.BUILD_DIR - local("cp -R static %s" % settings.BUILD_DIR) - - -def deploy(): - put(settings.BUILD_DIR, 'deploy') - - -def wc(): - local("wc -w `find content -type f`") diff --git a/legacy/docs/readme.md b/legacy/docs/readme.md deleted file mode 100644 index 58d9c371..00000000 --- a/legacy/docs/readme.md +++ /dev/null @@ -1,61 +0,0 @@ -Diva.js documentation -===================== - -This is the source code for the usage and code documentation for Diva.js, -generated with a custom build script. Uses the Django template library, -[Pygments](http://pygments.org/), and -[Markdown](http://daringfireball.net/projects/markdown/syntax) with [several -custom extensions](#markdown-extensions). - -## Editing the content - -To edit the content, look for the corresponding markdown file in the `content/` -directory. For example, to edit the `documentation/setup/frontend/html` page, -simply edit `content/documentation/setup/frontend/html.md`. - -### Markdown extensions - -There are four Markdown extensions that are used when generating a page: - -* [Tables](http://freewisdom.org/projects/python-markdown/Tables); -* [CodeHilite](http://freewisdom.org/projects/python-markdown/CodeHilite), for - syntax highlighting with Pygments; -* [Fenced - code - blocks](http://freewisdom.org/projects/python-markdown/Fenced_Code_Blocks), - in conjunction with Pygments syntax highlighting; -* and a modified version of [Table of - Contents](http://freewisdom.org/projects/python-markdown/Table_of_Contents), - the source for which can be found in `src/mdx_pilcrow_toc.py` (modified to - show a pilcrow after each header). - -## Editing the layout - -Template files are found under `templates/`, and use the Django templating -language for logic and inheritance. - -Stylesheet, image and javascript files can be found under `static/`. - -## Building - -To build the documentation, run - -```console -fab build -``` - -from within the `docs/` directory (including subdirectories). - -All the files required for the documentation (HTML, CSS, JS, image) will be -copied over to the build directory (`../diva`, relative to the root `docs/` -directory). - -## Licensing information - -The background image used on the home page is a modified version of a -[photograph taken by Amelia-Jane -Schmidt](http://www.flickr.com/photos/meeli/2854849909/), released under a [Creative Commons -BY-NC-SA](http://creativecommons.org/licenses/by-nc-sa/2.0/) license. - -Other images (except for logos) are either taken from Glyphicons or -custom-created, unless otherwise specified. diff --git a/legacy/docs/src/__init__.py b/legacy/docs/src/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/legacy/docs/src/constants.py b/legacy/docs/src/constants.py deleted file mode 100644 index e4928588..00000000 --- a/legacy/docs/src/constants.py +++ /dev/null @@ -1,96 +0,0 @@ -from django.conf import settings - -doc_sections = [ - ('using', 'Using the viewer', [ - ('desktop', 'Desktop usage instructions', []), - ('mobile', 'Mobile/tablet usage instructions', []), - ('plugins', 'Using the plugins', []), - ('browser-support', 'Browser/platform support', []), - ]), - #('image-preprocessing', 'Image pre-processing', [ - #('tiled-images', 'Introduction to tiled images', []), - #('image-formats', 'Image formats', []), - #('using-processing-scripts', 'Using the processing scripts', []), - #]), - ('setup', 'Setup and installation', [ - #('backend', 'Backend', [ - #('iipimage', 'Installing IIPImage', []), - #('data-server', 'The data server', []), - #]), - ('frontend', 'Frontend', [ - ('html', 'The HTML', []), - ('javascript', 'The Javascript', []), - ('multiple-viewers', 'Multiple viewer setups', []), - #('integrated', 'Integrated viewer setups', []), - ]), - ]), - ('customising', 'Customising the viewer', [ - #('look-and-feel', 'Changing the look and feel', []), - #('configuring-plugins', 'Configuring the default plugins', []), - #('writing-plugins', 'Writing plugins', []), - #('performance', 'Performance optimisations', []), - ('security', 'Security tips', []), - ]), - ('code', 'Code documentation', [ - #('build-process', 'The build process', []), - #('stylesheets', 'Stylesheets', [ - #('how-less-works', 'How LESS works', []), - #('organisation', 'Stylesheet organisation', []), - #('variables', 'Variables', []), - #('mixins', 'Mixins', []), - #]), - ('javascript', 'Javascript', [ - ('minification', 'The minification process', []), - #('loading', 'Loading a viewer', []), - ('settings', 'Setting reference', []), - ('functions', 'Function reference', []), - ('miscellaneous', 'Miscellaneous', []), - ]), - ]) -] - -doc_links = [] -doc_titles = {} -doc_children = {} - -def make_link(section, title, subsections): - doc_titles[section] = title - - link = '%s' % (settings.DOCS_URL + section, title) - links = [] - - for subsection, subtitle, subsubsections in subsections: - new_section = section + '/' + subsection - links.extend(make_link(new_section, subtitle, subsubsections)) - - if links: - # Only the direct descendants (no grandchildren) - doc_children[section] = filter(lambda x: isinstance(x, basestring), links) - - return [link, links] - else: - return [link] - -for section, title, subsections in doc_sections: - doc_links.extend(make_link(section, title, subsections)) - -# Depth-first search to build the next/prev pages things -doc_next_pages = {} -doc_prev_pages = {} - -def set_next_page(section, subsections, previous=None): - if previous: - url = settings.DOCS_URL + section - doc_next_pages[previous] = url - doc_prev_pages[section] = settings.DOCS_URL + previous - - next_section = section - for child_section, _, child_subsections in subsections: - if section: - child_section = section + '/' + child_section - - next_section = set_next_page(child_section, child_subsections, previous=next_section) - - return next_section - -set_next_page('', doc_sections) diff --git a/legacy/docs/src/generate.py b/legacy/docs/src/generate.py deleted file mode 100755 index 5c7cd8b6..00000000 --- a/legacy/docs/src/generate.py +++ /dev/null @@ -1,103 +0,0 @@ -#!/usr/bin/env python - -import codecs -import os -import shutil - -os.environ['DJANGO_SETTINGS_MODULE'] = 'settings' - -from django.template import Context, Template, loader -import markdown - -import constants -import jsparse -import settings - -data = { - 'DIVA_GITHUB_URL': settings.DIVA_GITHUB_URL, - 'STATIC_URL': settings.STATIC_URL, - 'ROOT_URL': settings.ROOT_URL, - 'configurable_settings': jsparse.get_settings('defaults'), - 'other_settings': jsparse.get_settings('globals'), - 'private_functions': jsparse.get_functions(), - 'public_functions': jsparse.get_functions(public=True), - 'doc_links': constants.doc_links, - 'LATEST_VERSION': settings.LATEST_VERSION, -} - -def remove_content_dir(path): - return path[len(settings.CONTENT_DIR) + 1:] - -def get_build_path(path): - return os.path.join(settings.BUILD_DIR, remove_content_dir(path)) - -def remove_template_dir(path): - return path[len(settings.TEMPLATE_DIR) + 1:] - -def get_template_path(path): - return os.path.join(settings.TEMPLATE_DIR, path) - -try: - shutil.rmtree(settings.BUILD_DIR) -except OSError: - pass - -base_template_dirs = ( - '', - 'documentation/', -) - -os.mkdir(settings.BUILD_DIR) - -content_files = [] - -loader.add_to_builtins('generator.templatetags.extras') - -for root, dirnames, filenames in os.walk(settings.CONTENT_DIR): - for dirname in dirnames: - dir_path = os.path.join(root, dirname) - os.mkdir(get_build_path(dir_path)) - - # Figure out the files in this dir (the build dir) - html_files = [filename + '.html' for filename in filenames] - - for filename in filenames: - data['dirnames'] = dirnames - file_path = os.path.join(root, filename) - relative_path = remove_content_dir(file_path) - data['relative_path'] = relative_path - - if '/_' not in relative_path and relative_path.endswith('.md'): - # Get rid of the 'documentation/' and the '.md' - page_name = relative_path[14:-3] - if page_name.endswith('index'): - page_name = page_name[:-6] - print page_name - data['doc_section'] = constants.doc_titles.get(page_name) - data['doc_children'] = constants.doc_children.get(page_name) - data['doc_next'] = constants.doc_next_pages.get(page_name) - data['doc_prev'] = constants.doc_prev_pages.get(page_name) - - content_files.append(relative_path) - - possible_base = os.path.join(os.path.dirname(get_template_path(relative_path)), "base.html") - if os.path.isfile(possible_base): - base_template = remove_template_dir(possible_base) - - for base_template_dir in base_template_dirs: - if relative_path.startswith(base_template_dir): - base_template = os.path.join(base_template_dir, "base.html") - - print relative_path - print " base: " + base_template - - file = codecs.open(file_path, encoding='utf-8') - file_contents = markdown.markdown(file.read(), extensions=['pilcrow_toc', 'tables', 'codehilite', 'fenced_code']) - contents = "{%% extends \"%s\" %%}{%% block content %%}\n%s\n{%% endblock %%}" % (base_template, file_contents) - template = Template(contents) - context = Context(data) - page = template.render(context) - output_filename, _ = os.path.splitext(get_build_path(file_path)) - output_filename += '.html' - output_file = open(output_filename, 'wt') - output_file.write(page) diff --git a/legacy/docs/src/generator/__init__.py b/legacy/docs/src/generator/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/legacy/docs/src/generator/templatetags/__init__.py b/legacy/docs/src/generator/templatetags/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/legacy/docs/src/generator/templatetags/extras.py b/legacy/docs/src/generator/templatetags/extras.py deleted file mode 100644 index 4f5ead2a..00000000 --- a/legacy/docs/src/generator/templatetags/extras.py +++ /dev/null @@ -1,56 +0,0 @@ -import markdown -from django import template -from django.conf import settings - - -register = template.Library() - -@register.simple_tag -def show(filename): - try: - file = open(filename) - contents = markdown.markdown(file.read(), extensions=['codehilite', 'fenced_code', 'tables']) - output = template.Template(contents).render(template.Context({})) - return output - except IOError: - return "" - - -@register.simple_tag -def docs_image(filename): - """ - Pass it a filename (without the .PNG extension) and it will load it from - static/img/docs/{{ filename }}.png. - """ - return 'Screenshot' - - -@register.simple_tag -def settings_link(setting): - """ - Pass it the name of a setting, it will return the absolute URL to it - """ - return "settings.%s" % ( - settings.DOCS_URL, setting, setting) - - -@register.simple_tag -def private_link(function): - """ - Pass it the name of a private function, it will return the absolute URL to it - """ - return '%s()' % ( - settings.DOCS_URL, function, function) - - -@register.simple_tag -def public_link(function): - return private_link('this.' + function) - - -@register.simple_tag -def link(key): - """ - For commonly-used links - """ - return '%s' % (settings.COMMON_LINKS[key], key) diff --git a/legacy/docs/src/jsparse.py b/legacy/docs/src/jsparse.py deleted file mode 100644 index 58eab0f4..00000000 --- a/legacy/docs/src/jsparse.py +++ /dev/null @@ -1,80 +0,0 @@ -""" -Parse the various JS scripts using regular expressions etc -""" - -import re -import json - -path_to_js = "/home/wliu/public_html/source/js/diva.js" - -def get_js_lines(): - js_file = open(path_to_js) - js_lines = [line.strip('\n') for line in js_file.readlines()] - - return js_lines - -def get_settings(var_name): - js = [line.strip() for line in get_js_lines()] - - first_line = js.index('var %s = {' % var_name) - last_line = first_line + js[first_line:].index('};') - settings = js[first_line + 1:last_line] - - real_settings = [] - - for setting in settings: - # Get the name (everything until the first colon) - colon_i = setting.index(':') - name = setting[:colon_i] - - # Get the comment (everything after the //) - comment_i = setting.index('// ') - comment = setting[comment_i + 3:] - - # Get the default value - default_value = setting[colon_i + 2:comment_i].strip() - # Get rid of the comma, if there is one - if default_value.endswith(','): - default_value = default_value[:-1] - - mandatory = comment.endswith('*MANDATORY*') - - real_settings.append({ - 'name': name, - 'default': default_value, - 'comment': comment, - 'mandatory': mandatory, - 'filename': 'content/documentation/code/javascript/_settings/%s.md' % name, - }) - - return real_settings - - -def get_functions(public=False): - js = get_js_lines() - - prefix = 'this\.' if public else 'var ' - re_string = '^[ ]{8}%s(?P[a-z0-9A-Z]+) = function.*$' % prefix - function_re = re.compile(re_string) - - directory = 'public' if public else 'private' - - functions = [] - - for i, line in enumerate(js): - function_match = function_re.match(line) - - if function_match is not None: - function_name = function_match.group('name') - if public: - function_name = 'this.' + function_name - - if function_name != 'Diva': - functions.append({ - # It's fine that it's 0-based indexing because of the comment - 'i': i, - 'name': function_name, - 'filename': 'content/documentation/code/javascript/_%s_functions/%s.md' % (directory, function_name), - }) - - return functions diff --git a/legacy/docs/src/mdx_pilcrow_toc.py b/legacy/docs/src/mdx_pilcrow_toc.py deleted file mode 100644 index dd052b88..00000000 --- a/legacy/docs/src/mdx_pilcrow_toc.py +++ /dev/null @@ -1,181 +0,0 @@ -""" -Table of Contents Extension for Python-Markdown -* * * - -(c) 2008 [Jack Miller](http://codezen.org) - -Dependencies: -* [Markdown 2.1+](http://www.freewisdom.org/projects/python-markdown/) - -""" -import markdown -from markdown.util import etree -from markdown.extensions.headerid import slugify, unique, itertext - -import re - - -class TocTreeprocessor(markdown.treeprocessors.Treeprocessor): - # Iterator wrapper to get parent and child all at once - def iterparent(self, root): - for parent in root.getiterator(): - for child in parent: - yield parent, child - - def run(self, doc): - marker_found = False - - div = etree.Element("div") - div.attrib["class"] = "toc" - last_li = None - - # Add title to the div - if self.config["title"]: - header = etree.SubElement(div, "span") - header.attrib["class"] = "toctitle" - header.text = self.config["title"] - - level = 0 - list_stack=[div] - header_rgx = re.compile("[Hh][123456]") - - # Get a list of id attributes - used_ids = [] - for c in doc.getiterator(): - if "id" in c.attrib: - used_ids.append(c.attrib["id"]) - - last_numbers = [0] * 5 - last_tag_level = 1 - last_level = -1 - - for (p, c) in self.iterparent(doc): - text = ''.join(itertext(c)).strip() - if not text: - continue - - # To keep the output from screwing up the - # validation by putting a
inside of a

- # we actually replace the

in its entirety. - # We do not allow the marker inside a header as that - # would causes an endless loop of placing a new TOC - # inside a previously generated TOC. - - if c.text and c.text.strip() == self.config["marker"] and \ - not header_rgx.match(c.tag) and c.tag not in ['pre', 'code']: - for i in range(len(p)): - if p[i] == c: - p[i] = div - break - marker_found = True - - if header_rgx.match(c.tag): - try: - tag_level = int(c.tag[-1]) - level_diff = last_tag_level - tag_level - - if tag_level > last_tag_level: - this_level = last_level + 1 - # Mimic the behaviour of the table of contents - if level_diff < 1: - tag_level = last_tag_level + 1 - elif tag_level < last_tag_level: - # If the tag difference is MORE than one, go up that many - if level_diff > 1: - this_level = last_level - level_diff - else: - this_level = last_level - 1 - for i in xrange(this_level + 1, len(last_numbers)): - last_numbers[i] = 0 - else: - this_level = last_level - - last_numbers[this_level] += 1 - section_number = '.'.join(map(unicode, last_numbers[:this_level+1])) - placeholder = self.markdown.htmlStash.store(u'%s' % section_number, safe=True) - last_tag_level = tag_level - last_level = this_level - - while tag_level < level: - list_stack.pop() - level -= 1 - - if tag_level > level: - newlist = etree.Element("ul") - if last_li: - last_li.append(newlist) - else: - list_stack[-1].append(newlist) - list_stack.append(newlist) - if level == 0: - level = tag_level - else: - level += 1 - - id = unique(self.config["slugify"](text, '-'), used_ids) - - # List item link, to be inserted into the toc div - last_li = etree.Element("li") - link = etree.SubElement(last_li, "a") - link.text = c.text - link.attrib["href"] = '#' + id - pilcrow_html = u'' % {'id': id} - header_link = self.markdown.htmlStash.store(pilcrow_html, safe=True) - - c.text = c.text + header_link - c.attrib['class'] = 'header' - - if self.config["anchorlink"] in [1, '1', True, 'True', 'true']: - anchor = etree.Element("a") - anchor.text = c.text - anchor.attrib["href"] = "#" + id - anchor.attrib["class"] = "toclink" - c.text = "" - for elem in c.getchildren(): - anchor.append(elem) - c.remove(elem) - c.append(anchor) - - list_stack[-1].append(last_li) - except IndexError: - # We have bad ordering of headers. Just move on. - pass - if not marker_found: - # serialize and attach to markdown instance. - prettify = self.markdown.treeprocessors.get('prettify') - if prettify: prettify.run(div) - toc = self.markdown.serializer(div) - for pp in self.markdown.postprocessors.values(): - toc = pp.run(toc) - self.markdown.toc = toc - -class TocExtension(markdown.Extension): - def __init__(self, configs): - self.config = { "marker" : ["[TOC]", - "Text to find and replace with Table of Contents -" - "Defaults to \"[TOC]\""], - "slugify" : [slugify, - "Function to generate anchors based on header text-" - "Defaults to the headerid ext's slugify function."], - "title" : [None, - "Title to insert into TOC

- " - "Defaults to None"], - "anchorlink" : [0, - "1 if header should be a self link" - "Defaults to 0"]} - - for key, value in configs: - self.setConfig(key, value) - - def extendMarkdown(self, md, md_globals): - tocext = TocTreeprocessor(md) - tocext.config = self.getConfigs() - # Headerid ext is set to '>inline'. With this set to ' .headerlink, h3:hover > .headerlink { - visibility: visible; -} - -.inline-block { - display: inline-block; - zoom: 1; - *display: inline; -} - -.center-align { - text-align: center; -} - -.example-grid a img { - border: 2px solid #E9E9E9; - padding: 10px; -} - -.example-grid a img:hover { - border-color: #89A8D0; -} - -.example-grid div { - padding-top: 20px; - display: inline-block; - vertical-align: top; - zoom: 1 - *display: inline; - width: 480px; -} - -.example-grid img { - width: 440px; - margin-bottom: 20px; -} - -ol, ul { - padding: 10px 0; - margin-left: 20px; -} - -ul ul { - padding: 5px 0; -} - -hr { - border: 0; - background: #CCC; - margin-top: 33px; - height: 1px; - clear: both; -} - -.browse-links p { - margin-top: 10px; -} - -.browse-links .next { - float: right; -} - -.browse-links .prev { - float: left; -} diff --git a/legacy/docs/static/css/syntax.css b/legacy/docs/static/css/syntax.css deleted file mode 100644 index ab74a348..00000000 --- a/legacy/docs/static/css/syntax.css +++ /dev/null @@ -1,71 +0,0 @@ -/* Tango, unmodified */ - -.codehilite .hll { background-color: #ffffcc } -.codehilite .c { color: #8f5902; font-style: italic } /* Comment */ -.codehilite .err { color: #a40000; border: 1px solid #ef2929 } /* Error */ -.codehilite .g { color: #000000 } /* Generic */ -.codehilite .k { color: #204a87; font-weight: bold } /* Keyword */ -.codehilite .l { color: #000000 } /* Literal */ -.codehilite .n { color: #000000 } /* Name */ -.codehilite .o { color: #ce5c00; font-weight: bold } /* Operator */ -.codehilite .x { color: #000000 } /* Other */ -.codehilite .p { color: #000000; font-weight: bold } /* Punctuation */ -.codehilite .cm { color: #8f5902; font-style: italic } /* Comment.Multiline */ -.codehilite .cp { color: #8f5902; font-style: italic } /* Comment.Preproc */ -.codehilite .c1 { color: #8f5902; font-style: italic } /* Comment.Single */ -.codehilite .cs { color: #8f5902; font-style: italic } /* Comment.Special */ -.codehilite .gd { color: #a40000 } /* Generic.Deleted */ -.codehilite .ge { color: #000000; font-style: italic } /* Generic.Emph */ -.codehilite .gr { color: #ef2929 } /* Generic.Error */ -.codehilite .gh { color: #000080; font-weight: bold } /* Generic.Heading */ -.codehilite .gi { color: #00A000 } /* Generic.Inserted */ -.codehilite .go { color: #000000; font-style: italic } /* Generic.Output */ -.codehilite .gp { color: #8f5902 } /* Generic.Prompt */ -.codehilite .gs { color: #000000; font-weight: bold } /* Generic.Strong */ -.codehilite .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ -.codehilite .gt { color: #a40000; font-weight: bold } /* Generic.Traceback */ -.codehilite .kc { color: #204a87; font-weight: bold } /* Keyword.Constant */ -.codehilite .kd { color: #204a87; font-weight: bold } /* Keyword.Declaration */ -.codehilite .kn { color: #204a87; font-weight: bold } /* Keyword.Namespace */ -.codehilite .kp { color: #204a87; font-weight: bold } /* Keyword.Pseudo */ -.codehilite .kr { color: #204a87; font-weight: bold } /* Keyword.Reserved */ -.codehilite .kt { color: #204a87; font-weight: bold } /* Keyword.Type */ -.codehilite .ld { color: #000000 } /* Literal.Date */ -.codehilite .m { color: #0000cf; font-weight: bold } /* Literal.Number */ -.codehilite .s { color: #4e9a06 } /* Literal.String */ -.codehilite .na { color: #c4a000 } /* Name.Attribute */ -.codehilite .nb { color: #204a87 } /* Name.Builtin */ -.codehilite .nc { color: #000000 } /* Name.Class */ -.codehilite .no { color: #000000 } /* Name.Constant */ -.codehilite .nd { color: #5c35cc; font-weight: bold } /* Name.Decorator */ -.codehilite .ni { color: #ce5c00 } /* Name.Entity */ -.codehilite .ne { color: #cc0000; font-weight: bold } /* Name.Exception */ -.codehilite .nf { color: #000000 } /* Name.Function */ -.codehilite .nl { color: #f57900 } /* Name.Label */ -.codehilite .nn { color: #000000 } /* Name.Namespace */ -.codehilite .nx { color: #000000 } /* Name.Other */ -.codehilite .py { color: #000000 } /* Name.Property */ -.codehilite .nt { color: #204a87; font-weight: bold } /* Name.Tag */ -.codehilite .nv { color: #000000 } /* Name.Variable */ -.codehilite .ow { color: #204a87; font-weight: bold } /* Operator.Word */ -.codehilite .w { color: #f8f8f8; text-decoration: underline } /* Text.Whitespace */ -.codehilite .mf { color: #0000cf; font-weight: bold } /* Literal.Number.Float */ -.codehilite .mh { color: #0000cf; font-weight: bold } /* Literal.Number.Hex */ -.codehilite .mi { color: #0000cf; font-weight: bold } /* Literal.Number.Integer */ -.codehilite .mo { color: #0000cf; font-weight: bold } /* Literal.Number.Oct */ -.codehilite .sb { color: #4e9a06 } /* Literal.String.Backtick */ -.codehilite .sc { color: #4e9a06 } /* Literal.String.Char */ -.codehilite .sd { color: #8f5902; font-style: italic } /* Literal.String.Doc */ -.codehilite .s2 { color: #4e9a06 } /* Literal.String.Double */ -.codehilite .se { color: #4e9a06 } /* Literal.String.Escape */ -.codehilite .sh { color: #4e9a06 } /* Literal.String.Heredoc */ -.codehilite .si { color: #4e9a06 } /* Literal.String.Interpol */ -.codehilite .sx { color: #4e9a06 } /* Literal.String.Other */ -.codehilite .sr { color: #4e9a06 } /* Literal.String.Regex */ -.codehilite .s1 { color: #4e9a06 } /* Literal.String.Single */ -.codehilite .ss { color: #4e9a06 } /* Literal.String.Symbol */ -.codehilite .bp { color: #3465a4 } /* Name.Builtin.Pseudo */ -.codehilite .vc { color: #000000 } /* Name.Variable.Class */ -.codehilite .vg { color: #000000 } /* Name.Variable.Global */ -.codehilite .vi { color: #000000 } /* Name.Variable.Instance */ -.codehilite .il { color: #0000cf; font-weight: bold } /* Literal.Number.Integer.Long */ diff --git a/legacy/docs/static/img/about.png b/legacy/docs/static/img/about.png deleted file mode 100644 index cf25b3a2..00000000 Binary files a/legacy/docs/static/img/about.png and /dev/null differ diff --git a/legacy/docs/static/img/block_links.png b/legacy/docs/static/img/block_links.png deleted file mode 100644 index f14f5b1f..00000000 Binary files a/legacy/docs/static/img/block_links.png and /dev/null differ diff --git a/legacy/docs/static/img/cfi.png b/legacy/docs/static/img/cfi.png deleted file mode 100644 index 0be4344a..00000000 Binary files a/legacy/docs/static/img/cfi.png and /dev/null differ diff --git a/legacy/docs/static/img/cirmmt.png b/legacy/docs/static/img/cirmmt.png deleted file mode 100644 index be7d695b..00000000 Binary files a/legacy/docs/static/img/cirmmt.png and /dev/null differ diff --git a/legacy/docs/static/img/contributing.png b/legacy/docs/static/img/contributing.png deleted file mode 100644 index 4f115b7b..00000000 Binary files a/legacy/docs/static/img/contributing.png and /dev/null differ diff --git a/legacy/docs/static/img/ddmal.png b/legacy/docs/static/img/ddmal.png deleted file mode 100644 index 394d27cf..00000000 Binary files a/legacy/docs/static/img/ddmal.png and /dev/null differ diff --git a/legacy/docs/static/img/ddmal_logo.png b/legacy/docs/static/img/ddmal_logo.png deleted file mode 100644 index d92a6a00..00000000 Binary files a/legacy/docs/static/img/ddmal_logo.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/Apple_Safari.png b/legacy/docs/static/img/docs/Apple_Safari.png deleted file mode 100644 index 31f58b3a..00000000 Binary files a/legacy/docs/static/img/docs/Apple_Safari.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/Opera-icon-high-res.png b/legacy/docs/static/img/docs/Opera-icon-high-res.png deleted file mode 100644 index 3fb151dc..00000000 Binary files a/legacy/docs/static/img/docs/Opera-icon-high-res.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/canvas-demo.png b/legacy/docs/static/img/docs/canvas-demo.png deleted file mode 100644 index a5e493bf..00000000 Binary files a/legacy/docs/static/img/docs/canvas-demo.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/canvas-icon.png b/legacy/docs/static/img/docs/canvas-icon.png deleted file mode 100644 index 0337f916..00000000 Binary files a/legacy/docs/static/img/docs/canvas-icon.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/chrome.png b/legacy/docs/static/img/docs/chrome.png deleted file mode 100644 index 63636000..00000000 Binary files a/legacy/docs/static/img/docs/chrome.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/document-view.png b/legacy/docs/static/img/docs/document-view.png deleted file mode 100644 index 95f22760..00000000 Binary files a/legacy/docs/static/img/docs/document-view.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/document-viewer-pane.png b/legacy/docs/static/img/docs/document-viewer-pane.png deleted file mode 100644 index 158375a9..00000000 Binary files a/legacy/docs/static/img/docs/document-viewer-pane.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/download-icon.png b/legacy/docs/static/img/docs/download-icon.png deleted file mode 100644 index 330e2ec0..00000000 Binary files a/legacy/docs/static/img/docs/download-icon.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/firefox.png b/legacy/docs/static/img/docs/firefox.png deleted file mode 100644 index 21df9912..00000000 Binary files a/legacy/docs/static/img/docs/firefox.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/fixed-height-grid.png b/legacy/docs/static/img/docs/fixed-height-grid.png deleted file mode 100644 index c9843f4d..00000000 Binary files a/legacy/docs/static/img/docs/fixed-height-grid.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/fixed-width-grid.png b/legacy/docs/static/img/docs/fixed-width-grid.png deleted file mode 100644 index fb9bd708..00000000 Binary files a/legacy/docs/static/img/docs/fixed-width-grid.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/fullscreen-icon.png b/legacy/docs/static/img/docs/fullscreen-icon.png deleted file mode 100644 index 281bc747..00000000 Binary files a/legacy/docs/static/img/docs/fullscreen-icon.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/fullscreen-link-icon.png b/legacy/docs/static/img/docs/fullscreen-link-icon.png deleted file mode 100644 index aa7adb79..00000000 Binary files a/legacy/docs/static/img/docs/fullscreen-link-icon.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/fullscreen-mode.png b/legacy/docs/static/img/docs/fullscreen-mode.png deleted file mode 100644 index 2506005c..00000000 Binary files a/legacy/docs/static/img/docs/fullscreen-mode.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/grid-icon.png b/legacy/docs/static/img/docs/grid-icon.png deleted file mode 100644 index 8999f196..00000000 Binary files a/legacy/docs/static/img/docs/grid-icon.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/grid-view-2.png b/legacy/docs/static/img/docs/grid-view-2.png deleted file mode 100644 index 0808a730..00000000 Binary files a/legacy/docs/static/img/docs/grid-view-2.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/grid-view-8.png b/legacy/docs/static/img/docs/grid-view-8.png deleted file mode 100644 index 06d4159b..00000000 Binary files a/legacy/docs/static/img/docs/grid-view-8.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/identity-logo-firefox.png b/legacy/docs/static/img/docs/identity-logo-firefox.png deleted file mode 100644 index 934fddec..00000000 Binary files a/legacy/docs/static/img/docs/identity-logo-firefox.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/ie.png b/legacy/docs/static/img/docs/ie.png deleted file mode 100644 index bde5bc51..00000000 Binary files a/legacy/docs/static/img/docs/ie.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/integrated-fullscreen-icon.png b/legacy/docs/static/img/docs/integrated-fullscreen-icon.png deleted file mode 100644 index 0d5c4359..00000000 Binary files a/legacy/docs/static/img/docs/integrated-fullscreen-icon.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/jumping-to-a-page.png b/legacy/docs/static/img/docs/jumping-to-a-page.png deleted file mode 100644 index fad0c0c7..00000000 Binary files a/legacy/docs/static/img/docs/jumping-to-a-page.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/link-icon.png b/legacy/docs/static/img/docs/link-icon.png deleted file mode 100644 index 2c0865a7..00000000 Binary files a/legacy/docs/static/img/docs/link-icon.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/modified-canvas-icon.png b/legacy/docs/static/img/docs/modified-canvas-icon.png deleted file mode 100644 index 15f5b676..00000000 Binary files a/legacy/docs/static/img/docs/modified-canvas-icon.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/opera.png b/legacy/docs/static/img/docs/opera.png deleted file mode 100644 index 990e709f..00000000 Binary files a/legacy/docs/static/img/docs/opera.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/photo.jpg b/legacy/docs/static/img/docs/photo.jpg deleted file mode 100644 index 4689cd7d..00000000 Binary files a/legacy/docs/static/img/docs/photo.jpg and /dev/null differ diff --git a/legacy/docs/static/img/docs/pinch-zoom.png b/legacy/docs/static/img/docs/pinch-zoom.png deleted file mode 100644 index 3c53a0cb..00000000 Binary files a/legacy/docs/static/img/docs/pinch-zoom.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/plugin-icons.png b/legacy/docs/static/img/docs/plugin-icons.png deleted file mode 100644 index 80d3f5f7..00000000 Binary files a/legacy/docs/static/img/docs/plugin-icons.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/safari.png b/legacy/docs/static/img/docs/safari.png deleted file mode 100644 index fdbe2a07..00000000 Binary files a/legacy/docs/static/img/docs/safari.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/scroll-amounts.png b/legacy/docs/static/img/docs/scroll-amounts.png deleted file mode 100644 index 86cc9a10..00000000 Binary files a/legacy/docs/static/img/docs/scroll-amounts.png and /dev/null differ diff --git a/legacy/docs/static/img/docs/throbber.png b/legacy/docs/static/img/docs/throbber.png deleted file mode 100644 index 2eaf007d..00000000 Binary files a/legacy/docs/static/img/docs/throbber.png and /dev/null differ diff --git a/legacy/docs/static/img/documentation.png b/legacy/docs/static/img/documentation.png deleted file mode 100644 index cf50eff0..00000000 Binary files a/legacy/docs/static/img/documentation.png and /dev/null differ diff --git a/legacy/docs/static/img/download.png b/legacy/docs/static/img/download.png deleted file mode 100644 index 206a2ea3..00000000 Binary files a/legacy/docs/static/img/download.png and /dev/null differ diff --git a/legacy/docs/static/img/examples.png b/legacy/docs/static/img/examples.png deleted file mode 100644 index 42750487..00000000 Binary files a/legacy/docs/static/img/examples.png and /dev/null differ diff --git a/legacy/docs/static/img/frame.png b/legacy/docs/static/img/frame.png deleted file mode 100755 index 03ce3c04..00000000 Binary files a/legacy/docs/static/img/frame.png and /dev/null differ diff --git a/legacy/docs/static/img/header.png b/legacy/docs/static/img/header.png deleted file mode 100644 index ab2b8c49..00000000 Binary files a/legacy/docs/static/img/header.png and /dev/null differ diff --git a/legacy/docs/static/img/icon.png b/legacy/docs/static/img/icon.png deleted file mode 100644 index 4ba3e4cb..00000000 Binary files a/legacy/docs/static/img/icon.png and /dev/null differ diff --git a/legacy/docs/static/img/library.jpg b/legacy/docs/static/img/library.jpg deleted file mode 100644 index abbaa968..00000000 Binary files a/legacy/docs/static/img/library.jpg and /dev/null differ diff --git a/legacy/docs/static/img/mini_diva.png b/legacy/docs/static/img/mini_diva.png deleted file mode 100644 index bdc59c90..00000000 Binary files a/legacy/docs/static/img/mini_diva.png and /dev/null differ diff --git a/legacy/docs/static/img/next.png b/legacy/docs/static/img/next.png deleted file mode 100755 index 2b5c7971..00000000 Binary files a/legacy/docs/static/img/next.png and /dev/null differ diff --git a/legacy/docs/static/img/previous.png b/legacy/docs/static/img/previous.png deleted file mode 100755 index faf65e5e..00000000 Binary files a/legacy/docs/static/img/previous.png and /dev/null differ diff --git a/legacy/docs/static/img/rism.png b/legacy/docs/static/img/rism.png deleted file mode 100644 index fb9c511b..00000000 Binary files a/legacy/docs/static/img/rism.png and /dev/null differ diff --git a/legacy/docs/static/img/schulich.png b/legacy/docs/static/img/schulich.png deleted file mode 100644 index c818021e..00000000 Binary files a/legacy/docs/static/img/schulich.png and /dev/null differ diff --git a/legacy/docs/static/img/screenshot.png b/legacy/docs/static/img/screenshot.png deleted file mode 100644 index bb425693..00000000 Binary files a/legacy/docs/static/img/screenshot.png and /dev/null differ diff --git a/legacy/docs/static/img/screenshot1.png b/legacy/docs/static/img/screenshot1.png deleted file mode 100644 index d37de065..00000000 Binary files a/legacy/docs/static/img/screenshot1.png and /dev/null differ diff --git a/legacy/docs/static/img/screenshot2.png b/legacy/docs/static/img/screenshot2.png deleted file mode 100644 index 5b06171d..00000000 Binary files a/legacy/docs/static/img/screenshot2.png and /dev/null differ diff --git a/legacy/docs/static/img/screenshot3.png b/legacy/docs/static/img/screenshot3.png deleted file mode 100644 index acd460d0..00000000 Binary files a/legacy/docs/static/img/screenshot3.png and /dev/null differ diff --git a/legacy/docs/static/img/screenshot4.png b/legacy/docs/static/img/screenshot4.png deleted file mode 100644 index 3b49381b..00000000 Binary files a/legacy/docs/static/img/screenshot4.png and /dev/null differ diff --git a/legacy/docs/static/img/snf.png b/legacy/docs/static/img/snf.png deleted file mode 100644 index 1d7c939c..00000000 Binary files a/legacy/docs/static/img/snf.png and /dev/null differ diff --git a/legacy/docs/static/img/ss-canvas.png b/legacy/docs/static/img/ss-canvas.png deleted file mode 100644 index f455b8c0..00000000 Binary files a/legacy/docs/static/img/ss-canvas.png and /dev/null differ diff --git a/legacy/docs/static/img/ss-dual.png b/legacy/docs/static/img/ss-dual.png deleted file mode 100644 index ac04f8d4..00000000 Binary files a/legacy/docs/static/img/ss-dual.png and /dev/null differ diff --git a/legacy/docs/static/img/ss-extensible.png b/legacy/docs/static/img/ss-extensible.png deleted file mode 100644 index 1bb75855..00000000 Binary files a/legacy/docs/static/img/ss-extensible.png and /dev/null differ diff --git a/legacy/docs/static/img/ss-grid.png b/legacy/docs/static/img/ss-grid.png deleted file mode 100644 index c340d05e..00000000 Binary files a/legacy/docs/static/img/ss-grid.png and /dev/null differ diff --git a/legacy/docs/static/img/ss-integrated.png b/legacy/docs/static/img/ss-integrated.png deleted file mode 100644 index 36b62f7f..00000000 Binary files a/legacy/docs/static/img/ss-integrated.png and /dev/null differ diff --git a/legacy/docs/static/img/ss-standard.png b/legacy/docs/static/img/ss-standard.png deleted file mode 100644 index 37be5590..00000000 Binary files a/legacy/docs/static/img/ss-standard.png and /dev/null differ diff --git a/legacy/docs/static/img/ss-zoom.png b/legacy/docs/static/img/ss-zoom.png deleted file mode 100644 index d2159dd7..00000000 Binary files a/legacy/docs/static/img/ss-zoom.png and /dev/null differ diff --git a/legacy/docs/static/img/sshrc.jpg b/legacy/docs/static/img/sshrc.jpg deleted file mode 100644 index ef1b3057..00000000 Binary files a/legacy/docs/static/img/sshrc.jpg and /dev/null differ diff --git a/legacy/docs/static/img/tar.png b/legacy/docs/static/img/tar.png deleted file mode 100644 index f2ec2be5..00000000 Binary files a/legacy/docs/static/img/tar.png and /dev/null differ diff --git a/legacy/docs/static/img/zip.png b/legacy/docs/static/img/zip.png deleted file mode 100644 index 38c9312a..00000000 Binary files a/legacy/docs/static/img/zip.png and /dev/null differ diff --git a/legacy/docs/static/js/jquery.min.js b/legacy/docs/static/js/jquery.min.js deleted file mode 100644 index f65cf1dc..00000000 --- a/legacy/docs/static/js/jquery.min.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! jQuery v1.8.2 jquery.com | jquery.org/license */ -(function(a,b){function G(a){var b=F[a]={};return p.each(a.split(s),function(a,c){b[c]=!0}),b}function J(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(I,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:+d+""===d?+d:H.test(d)?p.parseJSON(d):d}catch(f){}p.data(a,c,d)}else d=b}return d}function K(a){var b;for(b in a){if(b==="data"&&p.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function ba(){return!1}function bb(){return!0}function bh(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function bi(a,b){do a=a[b];while(a&&a.nodeType!==1);return a}function bj(a,b,c){b=b||0;if(p.isFunction(b))return p.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return p.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=p.grep(a,function(a){return a.nodeType===1});if(be.test(b))return p.filter(b,d,!c);b=p.filter(b,d)}return p.grep(a,function(a,d){return p.inArray(a,b)>=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write(""),bJ.close();b=bJ.body.appendChild(bJ.createElement(a)),c=bH(b,"display"),e.body.removeChild(bI)}return bS[a]=c,c}function ci(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||ce.test(a)?d(a,e):ci(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ci(a+"["+e+"]",b[e],c,d);else d(a,b)}function cz(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?f=[null,a,null]:f=u.exec(a);if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.2",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return(new Function("return "+b))();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return a!=null?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=new Array(d),i=new Array(d),j=new Array(d);for(;b
a",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="
t
",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="
",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||p.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.length,e=c.shift(),f=p._queueHooks(a,b),g=function(){p.dequeue(a,b)};e==="inprogress"&&(e=c.shift(),d--),e&&(b==="fx"&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c=0)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,d+""),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p!="undefined"&&(!a||p.event.triggered!==a.type)?p.event.dispatch.apply(h.elem,arguments):b},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j=0:p.find(m,this,null,[f]).length),h[m]&&j.push(l);j.length&&u.push({elem:f,matches:j})}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function bc(a,b,c,d){c=c||[],b=b||r;var e,f,i,j,k=b.nodeType;if(!a||typeof a!="string")return c;if(k!==1&&k!==9)return[];i=g(b);if(!i&&!d)if(e=P.exec(a))if(j=e[1]){if(k===9){f=b.getElementById(j);if(!f||!f.parentNode)return c;if(f.id===j)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(j))&&h(b,f)&&f.id===j)return c.push(f),c}else{if(e[2])return w.apply(c,x.call(b.getElementsByTagName(a),0)),c;if((j=e[3])&&_&&b.getElementsByClassName)return w.apply(c,x.call(b.getElementsByClassName(j),0)),c}return bp(a.replace(L,"$1"),b,c,d,i)}function bd(a){return function(b){var c=b.nodeName.toLowerCase();return c==="input"&&b.type===a}}function be(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}}function bf(a){return z(function(b){return b=+b,z(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function bg(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}function bh(a,b){var c,d,f,g,h,i,j,k=C[o][a];if(k)return b?0:k.slice(0);h=a,i=[],j=e.preFilter;while(h){if(!c||(d=M.exec(h)))d&&(h=h.slice(d[0].length)),i.push(f=[]);c=!1;if(d=N.exec(h))f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=d[0].replace(L," ");for(g in e.filter)(d=W[g].exec(h))&&(!j[g]||(d=j[g](d,r,!0)))&&(f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=g,c.matches=d);if(!c)break}return b?h.length:h?bc.error(a):C(a,i).slice(0)}function bi(a,b,d){var e=b.dir,f=d&&b.dir==="parentNode",g=u++;return b.first?function(b,c,d){while(b=b[e])if(f||b.nodeType===1)return a(b,c,d)}:function(b,d,h){if(!h){var i,j=t+" "+g+" ",k=j+c;while(b=b[e])if(f||b.nodeType===1){if((i=b[o])===k)return b.sizset;if(typeof i=="string"&&i.indexOf(j)===0){if(b.sizset)return b}else{b[o]=k;if(a(b,d,h))return b.sizset=!0,b;b.sizset=!1}}}else while(b=b[e])if(f||b.nodeType===1)if(a(b,d,h))return b}}function bj(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function bk(a,b,c,d,e){var f,g=[],h=0,i=a.length,j=b!=null;for(;h-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==l)||((b=c).nodeType?j(a,c,d):k(a,c,d))}];for(;i1&&bj(m),i>1&&a.slice(0,i-1).join("").replace(L,"$1"),c,i0,f=a.length>0,g=function(h,i,j,k,m){var n,o,p,q=[],s=0,u="0",x=h&&[],y=m!=null,z=l,A=h||f&&e.find.TAG("*",m&&i.parentNode||i),B=t+=z==null?1:Math.E;y&&(l=i!==r&&i,c=g.el);for(;(n=A[u])!=null;u++){if(f&&n){for(o=0;p=a[o];o++)if(p(n,i,j)){k.push(n);break}y&&(t=B,c=++g.el)}d&&((n=!p&&n)&&s--,h&&x.push(n))}s+=u;if(d&&u!==s){for(o=0;p=b[o];o++)p(x,q,i,j);if(h){if(s>0)while(u--)!x[u]&&!q[u]&&(q[u]=v.call(k));q=bk(q)}w.apply(k,q),y&&!h&&q.length>0&&s+b.length>1&&bc.uniqueSort(k)}return y&&(t=B,l=z),x};return g.el=0,d?z(g):g}function bo(a,b,c,d){var e=0,f=b.length;for(;e2&&(j=h[0]).type==="ID"&&b.nodeType===9&&!f&&e.relative[h[1].type]){b=e.find.ID(j.matches[0].replace(V,""),b,f)[0];if(!b)return c;a=a.slice(h.shift().length)}for(g=W.POS.test(a)?-1:h.length-1;g>=0;g--){j=h[g];if(e.relative[k=j.type])break;if(l=e.find[k])if(d=l(j.matches[0].replace(V,""),R.test(h[0].type)&&b.parentNode||b,f)){h.splice(g,1),a=d.length&&h.join("");if(!a)return w.apply(c,x.call(d,0)),c;break}}}return i(a,m)(d,b,f,c,R.test(a)),c}function bq(){}var c,d,e,f,g,h,i,j,k,l,m=!0,n="undefined",o=("sizcache"+Math.random()).replace(".",""),q=String,r=a.document,s=r.documentElement,t=0,u=0,v=[].pop,w=[].push,x=[].slice,y=[].indexOf||function(a){var b=0,c=this.length;for(;be.cacheLength&&delete a[b.shift()],a[c]=d},a)},B=A(),C=A(),D=A(),E="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",G=F.replace("w","w#"),H="([*^$|!~]?=)",I="\\["+E+"*("+F+")"+E+"*(?:"+H+E+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+G+")|)|)"+E+"*\\]",J=":("+F+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+I+")|[^:]|\\\\.)*|.*))\\)|)",K=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+E+"*((?:-\\d)?\\d*)"+E+"*\\)|)(?=[^-]|$)",L=new RegExp("^"+E+"+|((?:^|[^\\\\])(?:\\\\.)*)"+E+"+$","g"),M=new RegExp("^"+E+"*,"+E+"*"),N=new RegExp("^"+E+"*([\\x20\\t\\r\\n\\f>+~])"+E+"*"),O=new RegExp(J),P=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,Q=/^:not/,R=/[\x20\t\r\n\f]*[+~]/,S=/:not\($/,T=/h\d/i,U=/input|select|textarea|button/i,V=/\\(?!\\)/g,W={ID:new RegExp("^#("+F+")"),CLASS:new RegExp("^\\.("+F+")"),NAME:new RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:new RegExp("^("+F.replace("w","w*")+")"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+J),POS:new RegExp(K,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+E+"*(even|odd|(([+-]|)(\\d*)n|)"+E+"*(?:([+-]|)"+E+"*(\\d+)|))"+E+"*\\)|)","i"),needsContext:new RegExp("^"+E+"*[>+~]|"+K,"i")},X=function(a){var b=r.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}},Y=X(function(a){return a.appendChild(r.createComment("")),!a.getElementsByTagName("*").length}),Z=X(function(a){return a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!==n&&a.firstChild.getAttribute("href")==="#"}),$=X(function(a){a.innerHTML="";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),_=X(function(a){return a.innerHTML="",!a.getElementsByClassName||!a.getElementsByClassName("e").length?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length===2)}),ba=X(function(a){a.id=o+0,a.innerHTML="
",s.insertBefore(a,s.firstChild);var b=r.getElementsByName&&r.getElementsByName(o).length===2+r.getElementsByName(o+0).length;return d=!r.getElementById(o),s.removeChild(a),b});try{x.call(s.childNodes,0)[0].nodeType}catch(bb){x=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}bc.matches=function(a,b){return bc(a,null,null,b)},bc.matchesSelector=function(a,b){return bc(b,null,null,[a]).length>0},f=bc.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=f(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=f(b);return c},g=bc.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},h=bc.contains=s.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:s.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},bc.attr=function(a,b){var c,d=g(a);return d||(b=b.toLowerCase()),(c=e.attrHandle[b])?c(a):d||$?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},e=bc.selectors={cacheLength:50,createPseudo:z,match:W,attrHandle:Z?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},find:{ID:d?function(a,b,c){if(typeof b.getElementById!==n&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==n&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==n&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:Y?function(a,b){if(typeof b.getElementsByTagName!==n)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c},NAME:ba&&function(a,b){if(typeof b.getElementsByName!==n)return b.getElementsByName(name)},CLASS:_&&function(a,b,c){if(typeof b.getElementsByClassName!==n&&!c)return b.getElementsByClassName(a)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(V,""),a[3]=(a[4]||a[5]||"").replace(V,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||bc.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&bc.error(a[0]),a},PSEUDO:function(a){var b,c;if(W.CHILD.test(a[0]))return null;if(a[3])a[2]=a[3];else if(b=a[4])O.test(b)&&(c=bh(b,!0))&&(c=b.indexOf(")",b.length-c)-b.length)&&(b=b.slice(0,c),a[0]=a[0].slice(0,c)),a[2]=b;return a.slice(0,3)}},filter:{ID:d?function(a){return a=a.replace(V,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(V,""),function(b){var c=typeof b.getAttributeNode!==n&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(V,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=B[o][a];return b||(b=B(a,new RegExp("(^|"+E+")"+a+"("+E+"|$)"))),function(a){return b.test(a.className||typeof a.getAttribute!==n&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return function(d,e){var f=bc.attr(d,a);return f==null?b==="!=":b?(f+="",b==="="?f===c:b==="!="?f!==c:b==="^="?c&&f.indexOf(c)===0:b==="*="?c&&f.indexOf(c)>-1:b==="$="?c&&f.substr(f.length-c.length)===c:b==="~="?(" "+f+" ").indexOf(c)>-1:b==="|="?f===c||f.substr(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d){return a==="nth"?function(a){var b,e,f=a.parentNode;if(c===1&&d===0)return!0;if(f){e=0;for(b=f.firstChild;b;b=b.nextSibling)if(b.nodeType===1){e++;if(a===b)break}}return e-=d,e===c||e%c===0&&e/c>=0}:function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b){var c,d=e.pseudos[a]||e.setFilters[a.toLowerCase()]||bc.error("unsupported pseudo: "+a);return d[o]?d(b):d.length>1?(c=[a,a,"",b],e.setFilters.hasOwnProperty(a.toLowerCase())?z(function(a,c){var e,f=d(a,b),g=f.length;while(g--)e=y.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:z(function(a){var b=[],c=[],d=i(a.replace(L,"$1"));return d[o]?z(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)if(f=g[h])a[h]=!(b[h]=f)}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:z(function(a){return function(b){return bc(a,b).length>0}}),contains:z(function(a){return function(b){return(b.textContent||b.innerText||f(b)).indexOf(a)>-1}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!e.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},header:function(a){return T.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:bd("radio"),checkbox:bd("checkbox"),file:bd("file"),password:bd("password"),image:bd("image"),submit:be("submit"),reset:be("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return U.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement},first:bf(function(a,b,c){return[0]}),last:bf(function(a,b,c){return[b-1]}),eq:bf(function(a,b,c){return[c<0?c+b:c]}),even:bf(function(a,b,c){for(var d=0;d=0;)a.push(d);return a}),gt:bf(function(a,b,c){for(var d=c<0?c+b:c;++d",a.querySelectorAll("[selected]").length||e.push("\\["+E+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),X(function(a){a.innerHTML="

",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+E+"*(?:\"\"|'')"),a.innerHTML="",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=new RegExp(e.join("|")),bp=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a))){var i,j,k=!0,l=o,m=d,n=d.nodeType===9&&a;if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){i=bh(a),(k=d.getAttribute("id"))?l=k.replace(c,"\\$&"):d.setAttribute("id",l),l="[id='"+l+"'] ",j=i.length;while(j--)i[j]=l+i[j].join("");m=R.test(a)&&d.parentNode||d,n=i.join(",")}if(n)try{return w.apply(f,x.call(m.querySelectorAll(n),0)),f}catch(p){}finally{k||d.removeAttribute("id")}}return b(a,d,f,g,h)},h&&(X(function(b){a=h.call(b,"div");try{h.call(b,"[test!='']:sizzle"),f.push("!=",J)}catch(c){}}),f=new RegExp(f.join("|")),bc.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!g(b)&&!f.test(c)&&(!e||!e.test(c)))try{var i=h.call(b,c);if(i||a||b.document&&b.document.nodeType!==11)return i}catch(j){}return bc(c,null,null,[b]).length>0})}(),e.pseudos.nth=e.pseudos.eq,e.filters=bq.prototype=e.pseudos,e.setFilters=new bq,bc.attr=p.attr,p.find=bc,p.expr=bc.selectors,p.expr[":"]=p.expr.pseudos,p.unique=bc.uniqueSort,p.text=bc.getText,p.isXMLDoc=bc.isXML,p.contains=bc.contains}(a);var bc=/Until$/,bd=/^(?:parents|prev(?:Until|All))/,be=/^.[^:#\[\.,]*$/,bf=p.expr.match.needsContext,bg={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b0)for(e=d;e=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=bf.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(bh(c[0])||bh(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return bi(a,"nextSibling")},prev:function(a){return bi(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return bc.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!bg[a]?p.unique(e):e,this.length>1&&bd.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var bl="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",bm=/ jQuery\d+="(?:null|\d+)"/g,bn=/^\s+/,bo=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bp=/<([\w:]+)/,bq=/]","i"),bv=/^(?:checkbox|radio)$/,bw=/checked\s*(?:[^=]|=\s*.checked.)/i,bx=/\/(java|ecma)script/i,by=/^\s*\s*$/g,bz={option:[1,""],legend:[1,"
","
"],thead:[1,"","
"],tr:[2,"","
"],td:[3,"","
"],col:[2,"","
"],area:[1,"",""],_default:[0,"",""]},bA=bk(e),bB=bA.appendChild(e.createElement("div"));bz.optgroup=bz.option,bz.tbody=bz.tfoot=bz.colgroup=bz.caption=bz.thead,bz.th=bz.td,p.support.htmlSerialize||(bz._default=[1,"X
","
"]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(bm,""):b;if(typeof a=="string"&&!bs.test(a)&&(p.support.htmlSerialize||!bu.test(a))&&(p.support.leadingWhitespace||!bn.test(a))&&!bz[(bp.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(bo,"<$1>");try{for(;d1&&typeof j=="string"&&bw.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!bu.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(bB.innerHTML=a.outerHTML,bB.removeChild(g=bB.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){bE(a,g),d=bF(a),e=bF(g);for(f=0;d[f];++f)e[f]&&bE(d[f],e[f])}if(b){bD(a,g);if(c){d=bF(a),e=bF(g);for(f=0;d[f];++f)bD(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=b===e&&bA,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(f=0;(h=a[f])!=null;f++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!br.test(h))h=b.createTextNode(h);else{s=s||bk(b),l=b.createElement("div"),s.appendChild(l),h=h.replace(bo,"<$1>"),i=(bp.exec(h)||["",""])[1].toLowerCase(),j=bz[i]||bz._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=bq.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]===""&&!m?l.childNodes:[];for(g=n.length-1;g>=0;--g)p.nodeName(n[g],"tbody")&&!n[g].childNodes.length&&n[g].parentNode.removeChild(n[g])}!p.support.leadingWhitespace&&bn.test(h)&&l.insertBefore(b.createTextNode(bn.exec(h)[0]),l.firstChild),h=l.childNodes,l.parentNode.removeChild(l)}h.nodeType?t.push(h):p.merge(t,h)}l&&(h=l=s=null);if(!p.support.appendChecked)for(f=0;(h=t[f])!=null;f++)p.nodeName(h,"input")?bG(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),bG);if(c){q=function(a){if(!a.type||bx.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(f=0;(h=t[f])!=null;f++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[f+1,0].concat(r)),f+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.chrome?b.webkit=!0:b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function c(c,d){return d&&d instanceof p&&!(d instanceof a)&&(d=a(d)),p.fn.init.call(this,c,d,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var bH,bI,bJ,bK=/alpha\([^)]*\)/i,bL=/opacity=([^)]*)/,bM=/^(top|right|bottom|left)$/,bN=/^(none|table(?!-c[ea]).+)/,bO=/^margin/,bP=new RegExp("^("+q+")(.*)$","i"),bQ=new RegExp("^("+q+")(?!px)[a-z%]+$","i"),bR=new RegExp("^([-+])=("+q+")","i"),bS={},bT={position:"absolute",visibility:"hidden",display:"block"},bU={letterSpacing:0,fontWeight:400},bV=["Top","Right","Bottom","Left"],bW=["Webkit","O","Moz","ms"],bX=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return b$(this,!0)},hide:function(){return b$(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?bX.apply(this,arguments):this.each(function(){(c?a:bZ(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bH(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=bY(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=bR.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=bY(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=bH(a,c)),f==="normal"&&c in bU&&(f=bU[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?bH=function(b,c){var d,e,f,g,h=a.getComputedStyle(b,null),i=b.style;return h&&(d=h[c],d===""&&!p.contains(b.ownerDocument,b)&&(d=p.style(b,c)),bQ.test(d)&&bO.test(c)&&(e=i.width,f=i.minWidth,g=i.maxWidth,i.minWidth=i.maxWidth=i.width=d,d=h.width,i.width=e,i.minWidth=f,i.maxWidth=g)),d}:e.documentElement.currentStyle&&(bH=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),bQ.test(e)&&!bM.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth===0&&bN.test(bH(a,"display"))?p.swap(a,bT,function(){return cb(a,b,d)}):cb(a,b,d)},set:function(a,c,d){return b_(a,c,d?ca(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return bL.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(bK,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bK.test(f)?f.replace(bK,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return bH(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=bH(a,b);return bQ.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||bH(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bV[d]+b]=e[d]||e[d-2]||e[0];return f}},bO.test(a)||(p.cssHooks[a+b].set=b_)});var cd=/%20/g,ce=/\[\]$/,cf=/\r?\n/g,cg=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,ch=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ch.test(this.nodeName)||cg.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(cf,"\r\n")}}):{name:b.name,value:c.replace(cf,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ci(d,a[d],c,f);return e.join("&").replace(cd,"+")};var cj,ck,cl=/#.*$/,cm=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,cn=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,co=/^(?:GET|HEAD)$/,cp=/^\/\//,cq=/\?/,cr=/)<[^<]*)*<\/script>/gi,cs=/([?&])_=[^&]*/,ct=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,cu=p.fn.load,cv={},cw={},cx=["*/"]+["*"];try{ck=f.href}catch(cy){ck=e.createElement("a"),ck.href="",ck=ck.href}cj=ct.exec(ck.toLowerCase())||[],p.fn.load=function(a,c,d){if(typeof a!="string"&&cu)return cu.apply(this,arguments);if(!this.length)return this;var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),p.isFunction(c)?(d=c,c=b):c&&typeof c=="object"&&(f="POST"),p.ajax({url:a,type:f,dataType:"html",data:c,complete:function(a,b){d&&h.each(d,g||[a.responseText,b,a])}}).done(function(a){g=arguments,h.html(e?p("
").append(a.replace(cr,"")).find(e):a)}),this},p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){p.fn[b]=function(a){return this.on(b,a)}}),p.each(["get","post"],function(a,c){p[c]=function(a,d,e,f){return p.isFunction(d)&&(f=f||e,e=d,d=b),p.ajax({type:c,url:a,data:d,success:e,dataType:f})}}),p.extend({getScript:function(a,c){return p.get(a,b,c,"script")},getJSON:function(a,b,c){return p.get(a,b,c,"json")},ajaxSetup:function(a,b){return b?cB(a,p.ajaxSettings):(b=a,a=p.ajaxSettings),cB(a,b),a},ajaxSettings:{url:ck,isLocal:cn.test(cj[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":cx},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":p.parseJSON,"text xml":p.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:cz(cv),ajaxTransport:cz(cw),ajax:function(a,c){function y(a,c,f,i){var k,s,t,u,w,y=c;if(v===2)return;v=2,h&&clearTimeout(h),g=b,e=i||"",x.readyState=a>0?4:0,f&&(u=cC(l,x,f));if(a>=200&&a<300||a===304)l.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(p.lastModified[d]=w),w=x.getResponseHeader("Etag"),w&&(p.etag[d]=w)),a===304?(y="notmodified",k=!0):(k=cD(l,u),y=k.state,s=k.data,t=k.error,k=!t);else{t=y;if(!y||a)y="error",a<0&&(a=0)}x.status=a,x.statusText=(c||y)+"",k?o.resolveWith(m,[s,y,x]):o.rejectWith(m,[x,y,t]),x.statusCode(r),r=b,j&&n.trigger("ajax"+(k?"Success":"Error"),[x,l,k?s:t]),q.fireWith(m,[x,y]),j&&(n.trigger("ajaxComplete",[x,l]),--p.active||p.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d,e,f,g,h,i,j,k,l=p.ajaxSetup({},c),m=l.context||l,n=m!==l&&(m.nodeType||m instanceof p)?p(m):p.event,o=p.Deferred(),q=p.Callbacks("once memory"),r=l.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,setRequestHeader:function(a,b){if(!v){var c=a.toLowerCase();a=u[c]=u[c]||a,t[a]=b}return this},getAllResponseHeaders:function(){return v===2?e:null},getResponseHeader:function(a){var c;if(v===2){if(!f){f={};while(c=cm.exec(e))f[c[1].toLowerCase()]=c[2]}c=f[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return v||(l.mimeType=a),this},abort:function(a){return a=a||w,g&&g.abort(a),y(0,a),this}};o.promise(x),x.success=x.done,x.error=x.fail,x.complete=q.add,x.statusCode=function(a){if(a){var b;if(v<2)for(b in a)r[b]=[r[b],a[b]];else b=a[x.status],x.always(b)}return this},l.url=((a||l.url)+"").replace(cl,"").replace(cp,cj[1]+"//"),l.dataTypes=p.trim(l.dataType||"*").toLowerCase().split(s),l.crossDomain==null&&(i=ct.exec(l.url.toLowerCase())||!1,l.crossDomain=i&&i.join(":")+(i[3]?"":i[1]==="http:"?80:443)!==cj.join(":")+(cj[3]?"":cj[1]==="http:"?80:443)),l.data&&l.processData&&typeof l.data!="string"&&(l.data=p.param(l.data,l.traditional)),cA(cv,l,c,x);if(v===2)return x;j=l.global,l.type=l.type.toUpperCase(),l.hasContent=!co.test(l.type),j&&p.active++===0&&p.event.trigger("ajaxStart");if(!l.hasContent){l.data&&(l.url+=(cq.test(l.url)?"&":"?")+l.data,delete l.data),d=l.url;if(l.cache===!1){var z=p.now(),A=l.url.replace(cs,"$1_="+z);l.url=A+(A===l.url?(cq.test(l.url)?"&":"?")+"_="+z:"")}}(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",l.contentType),l.ifModified&&(d=d||l.url,p.lastModified[d]&&x.setRequestHeader("If-Modified-Since",p.lastModified[d]),p.etag[d]&&x.setRequestHeader("If-None-Match",p.etag[d])),x.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+cx+"; q=0.01":""):l.accepts["*"]);for(k in l.headers)x.setRequestHeader(k,l.headers[k]);if(!l.beforeSend||l.beforeSend.call(m,x,l)!==!1&&v!==2){w="abort";for(k in{success:1,error:1,complete:1})x[k](l[k]);g=cA(cw,l,c,x);if(!g)y(-1,"No Transport");else{x.readyState=1,j&&n.trigger("ajaxSend",[x,l]),l.async&&l.timeout>0&&(h=setTimeout(function(){x.abort("timeout")},l.timeout));try{v=1,g.send(t,y)}catch(B){if(v<2)y(-1,B);else throw B}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var cE=[],cF=/\?/,cG=/(=)\?(?=&|$)|\?\?/,cH=p.now();p.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=cE.pop()||p.expando+"_"+cH++;return this[a]=!0,a}}),p.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.data,j=c.url,k=c.jsonp!==!1,l=k&&cG.test(j),m=k&&!l&&typeof i=="string"&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&cG.test(i);if(c.dataTypes[0]==="jsonp"||l||m)return f=c.jsonpCallback=p.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,g=a[f],l?c.url=j.replace(cG,"$1"+f):m?c.data=i.replace(cG,"$1"+f):k&&(c.url+=(cF.test(j)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||p.error(f+" was not called"),h[0]},c.dataTypes[0]="json",a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,cE.push(f)),h&&p.isFunction(g)&&g(h[0]),h=g=b}),"script"}),p.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return p.globalEval(a),a}}}),p.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),p.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=e.head||e.getElementsByTagName("head")[0]||e.documentElement;return{send:function(f,g){c=e.createElement("script"),c.async="async",a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,e){if(e||!c.readyState||/loaded|complete/.test(c.readyState))c.onload=c.onreadystatechange=null,d&&c.parentNode&&d.removeChild(c),c=b,e||g(200,"success")},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(0,1)}}}});var cI,cJ=a.ActiveXObject?function(){for(var a in cI)cI[a](0,1)}:!1,cK=0;p.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&cL()||cM()}:cL,function(a){p.extend(p.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(p.ajaxSettings.xhr()),p.support.ajax&&p.ajaxTransport(function(c){if(!c.crossDomain||p.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async);if(c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l,m;try{if(d&&(e||i.readyState===4)){d=b,g&&(i.onreadystatechange=p.noop,cJ&&delete cI[g]);if(e)i.readyState!==4&&i.abort();else{h=i.status,k=i.getAllResponseHeaders(),l={},m=i.responseXML,m&&m.documentElement&&(l.xml=m);try{l.text=i.responseText}catch(a){}try{j=i.statusText}catch(n){j=""}!h&&c.isLocal&&!c.crossDomain?h=l.text?200:404:h===1223&&(h=204)}}}catch(o){e||f(-1,o)}l&&f(h,j,l,k)},c.async?i.readyState===4?setTimeout(d,0):(g=++cK,cJ&&(cI||(cI={},p(a).unload(cJ)),cI[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(0,1)}}}});var cN,cO,cP=/^(?:toggle|show|hide)$/,cQ=new RegExp("^(?:([-+])=|)("+q+")([a-z%]*)$","i"),cR=/queueHooks$/,cS=[cY],cT={"*":[function(a,b){var c,d,e=this.createTween(a,b),f=cQ.exec(b),g=e.cur(),h=+g||0,i=1,j=20;if(f){c=+f[2],d=f[3]||(p.cssNumber[a]?"":"px");if(d!=="px"&&h){h=p.css(e.elem,a,!0)||c||1;do i=i||".5",h=h/i,p.style(e.elem,a,h+d);while(i!==(i=e.cur()/g)&&i!==1&&--j)}e.unit=d,e.start=h,e.end=f[1]?h+(f[1]+1)*c:c}return e}]};p.Animation=p.extend(cW,{tweener:function(a,b){p.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");var c,d=0,e=a.length;for(;d-1,j={},k={},l,m;i?(k=e.position(),l=k.top,m=k.left):(l=parseFloat(g)||0,m=parseFloat(h)||0),p.isFunction(b)&&(b=b.call(a,c,f)),b.top!=null&&(j.top=b.top-f.top+l),b.left!=null&&(j.left=b.left-f.left+m),"using"in b?b.using.call(a,j):e.css(j)}},p.fn.extend({position:function(){if(!this[0])return;var a=this[0],b=this.offsetParent(),c=this.offset(),d=c_.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(p.css(a,"marginTop"))||0,c.left-=parseFloat(p.css(a,"marginLeft"))||0,d.top+=parseFloat(p.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(p.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||e.body;while(a&&!c_.test(a.nodeName)&&p.css(a,"position")==="static")a=a.offsetParent;return a||e.body})}}),p.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);p.fn[a]=function(e){return p.access(this,function(a,e,f){var g=da(a);if(f===b)return g?c in g?g[c]:g.document.documentElement[e]:a[e];g?g.scrollTo(d?p(g).scrollLeft():f,d?f:p(g).scrollTop()):a[e]=f},a,e,arguments.length,null)}}),p.each({Height:"height",Width:"width"},function(a,c){p.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){p.fn[e]=function(e,f){var g=arguments.length&&(d||typeof e!="boolean"),h=d||(e===!0||f===!0?"margin":"border");return p.access(this,function(c,d,e){var f;return p.isWindow(c)?c.document.documentElement["client"+a]:c.nodeType===9?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?p.css(c,d,e,h):p.style(c,d,e,h)},c,g?e:b,g,null)}})}),a.jQuery=a.$=p,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return p})})(window); \ No newline at end of file diff --git a/legacy/docs/static/js/screenshots.js b/legacy/docs/static/js/screenshots.js deleted file mode 100644 index 9ace20cb..00000000 --- a/legacy/docs/static/js/screenshots.js +++ /dev/null @@ -1,8 +0,0 @@ -$(function () { - $('#slides').slides({ - play: 5000, - preload: true, - slideSpeed: 500, - generatePagination: false - }); -}); diff --git a/legacy/docs/static/js/slides.min.js b/legacy/docs/static/js/slides.min.js deleted file mode 100755 index 1a1fcdd8..00000000 --- a/legacy/docs/static/js/slides.min.js +++ /dev/null @@ -1,20 +0,0 @@ -/* -* Slides, A Slideshow Plugin for jQuery -* Intructions: http://slidesjs.com -* By: Nathan Searles, http://nathansearles.com -* Version: 1.1.9 -* Updated: September 5th, 2011 -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -*/ -(function(a){a.fn.slides=function(b){return b=a.extend({},a.fn.slides.option,b),this.each(function(){function w(g,h,i){if(!p&&o){p=!0,b.animationStart(n+1);switch(g){case"next":l=n,k=n+1,k=e===k?0:k,r=f*2,g=-f*2,n=k;break;case"prev":l=n,k=n-1,k=k===-1?e-1:k,r=0,g=0,n=k;break;case"pagination":k=parseInt(i,10),l=a("."+b.paginationClass+" li."+b.currentClass+" a",c).attr("href").match("[^#/]+$"),k>l?(r=f*2,g=-f*2):(r=0,g=0),n=k}h==="fade"?b.crossfade?d.children(":eq("+k+")",c).css({zIndex:10}).fadeIn(b.fadeSpeed,b.fadeEasing,function(){b.autoHeight?d.animate({height:d.children(":eq("+k+")",c).outerHeight()},b.autoHeightSpeed,function(){d.children(":eq("+l+")",c).css({display:"none",zIndex:0}),d.children(":eq("+k+")",c).css({zIndex:0}),b.animationComplete(k+1),p=!1}):(d.children(":eq("+l+")",c).css({display:"none",zIndex:0}),d.children(":eq("+k+")",c).css({zIndex:0}),b.animationComplete(k+1),p=!1)}):d.children(":eq("+l+")",c).fadeOut(b.fadeSpeed,b.fadeEasing,function(){b.autoHeight?d.animate({height:d.children(":eq("+k+")",c).outerHeight()},b.autoHeightSpeed,function(){d.children(":eq("+k+")",c).fadeIn(b.fadeSpeed,b.fadeEasing)}):d.children(":eq("+k+")",c).fadeIn(b.fadeSpeed,b.fadeEasing,function(){a.browser.msie&&a(this).get(0).style.removeAttribute("filter")}),b.animationComplete(k+1),p=!1}):(d.children(":eq("+k+")").css({left:r,display:"block"}),b.autoHeight?d.animate({left:g,height:d.children(":eq("+k+")").outerHeight()},b.slideSpeed,b.slideEasing,function(){d.css({left:-f}),d.children(":eq("+k+")").css({left:f,zIndex:5}),d.children(":eq("+l+")").css({left:f,display:"none",zIndex:0}),b.animationComplete(k+1),p=!1}):d.animate({left:g},b.slideSpeed,b.slideEasing,function(){d.css({left:-f}),d.children(":eq("+k+")").css({left:f,zIndex:5}),d.children(":eq("+l+")").css({left:f,display:"none",zIndex:0}),b.animationComplete(k+1),p=!1})),b.pagination&&(a("."+b.paginationClass+" li."+b.currentClass,c).removeClass(b.currentClass),a("."+b.paginationClass+" li:eq("+k+")",c).addClass(b.currentClass))}}function x(){clearInterval(c.data("interval"))}function y(){b.pause?(clearTimeout(c.data("pause")),clearInterval(c.data("interval")),u=setTimeout(function(){clearTimeout(c.data("pause")),v=setInterval(function(){w("next",i)},b.play),c.data("interval",v)},b.pause),c.data("pause",u)):x()}a("."+b.container,a(this)).children().wrapAll('
');var c=a(this),d=a(".slides_control",c),e=d.children().size(),f=d.children().outerWidth(),g=d.children().outerHeight(),h=b.start-1,i=b.effect.indexOf(",")<0?b.effect:b.effect.replace(" ","").split(",")[0],j=b.effect.indexOf(",")<0?i:b.effect.replace(" ","").split(",")[1],k=0,l=0,m=0,n=0,o,p,q,r,s,t,u,v;if(e<2)return a("."+b.container,a(this)).fadeIn(b.fadeSpeed,b.fadeEasing,function(){o=!0,b.slidesLoaded()}),a("."+b.next+", ."+b.prev).fadeOut(0),!1;if(e<2)return;h<0&&(h=0),h>e&&(h=e-1),b.start&&(n=h),b.randomize&&d.randomize(),a("."+b.container,c).css({overflow:"hidden",position:"relative"}),d.children().css({position:"absolute",top:0,left:d.children().outerWidth(),zIndex:0,display:"none"}),d.css({position:"relative",width:f*3,height:g,left:-f}),a("."+b.container,c).css({display:"block"}),b.autoHeight&&(d.children().css({height:"auto"}),d.animate({height:d.children(":eq("+h+")").outerHeight()},b.autoHeightSpeed));if(b.preload&&d.find("img:eq("+h+")").length){a("."+b.container,c).css({background:"url("+b.preloadImage+") no-repeat 50% 50%"});var z=d.find("img:eq("+h+")").attr("src")+"?"+(new Date).getTime();a("img",c).parent().attr("class")!="slides_control"?t=d.children(":eq(0)")[0].tagName.toLowerCase():t=d.find("img:eq("+h+")"),d.find("img:eq("+h+")").attr("src",z).load(function(){d.find(t+":eq("+h+")").fadeIn(b.fadeSpeed,b.fadeEasing,function(){a(this).css({zIndex:5}),a("."+b.container,c).css({background:""}),o=!0,b.slidesLoaded()})})}else d.children(":eq("+h+")").fadeIn(b.fadeSpeed,b.fadeEasing,function(){o=!0,b.slidesLoaded()});b.bigTarget&&(d.children().css({cursor:"pointer"}),d.children().click(function(){return w("next",i),!1})),b.hoverPause&&b.play&&(d.bind("mouseover",function(){x()}),d.bind("mouseleave",function(){y()})),b.generateNextPrev&&(a("."+b.container,c).after('Prev'),a("."+b.prev,c).after('Next')),a("."+b.next,c).click(function(a){a.preventDefault(),b.play&&y(),w("next",i)}),a("."+b.prev,c).click(function(a){a.preventDefault(),b.play&&y(),w("prev",i)}),b.generatePagination?(b.prependPagination?c.prepend("
    "):c.append("
      "),d.children().each(function(){a("."+b.paginationClass,c).append('
    • '+(m+1)+"
    • "),m++})):a("."+b.paginationClass+" li a",c).each(function(){a(this).attr("href","#"+m),m++}),a("."+b.paginationClass+" li:eq("+h+")",c).addClass(b.currentClass),a("."+b.paginationClass+" li a",c).click(function(){return b.play&&y(),q=a(this).attr("href").match("[^#/]+$"),n!=q&&w("pagination",j,q),!1}),a("a.link",c).click(function(){return b.play&&y(),q=a(this).attr("href").match("[^#/]+$")-1,n!=q&&w("pagination",j,q),!1}),b.play&&(v=setInterval(function(){w("next",i)},b.play),c.data("interval",v))})},a.fn.slides.option={preload:!1,preloadImage:"/img/loading.gif",container:"slides_container",generateNextPrev:!1,next:"next",prev:"prev",pagination:!0,generatePagination:!0,prependPagination:!1,paginationClass:"pagination",currentClass:"current",fadeSpeed:350,fadeEasing:"",slideSpeed:350,slideEasing:"",start:1,effect:"slide",crossfade:!1,randomize:!1,play:0,pause:0,hoverPause:!1,autoHeight:!1,autoHeightSpeed:350,bigTarget:!1,animationStart:function(){},animationComplete:function(){},slidesLoaded:function(){}},a.fn.randomize=function(b){function c(){return Math.round(Math.random())-.5}return a(this).each(function(){var d=a(this),e=d.children(),f=e.length;if(f>1){e.hide();var g=[];for(i=0;i - - - - diva.js — - - - {% block precontent %}{% endblock %} - {% block content %}{% endblock %} - {% block postcontent %}{% endblock %} - - diff --git a/legacy/docs/templates/block_links.html b/legacy/docs/templates/block_links.html deleted file mode 100644 index 48ed9748..00000000 --- a/legacy/docs/templates/block_links.html +++ /dev/null @@ -1,7 +0,0 @@ - diff --git a/legacy/docs/templates/browse_links.html b/legacy/docs/templates/browse_links.html deleted file mode 100644 index 5824114e..00000000 --- a/legacy/docs/templates/browse_links.html +++ /dev/null @@ -1,9 +0,0 @@ - diff --git a/legacy/docs/templates/documentation/base.html b/legacy/docs/templates/documentation/base.html deleted file mode 100644 index 45e259f5..00000000 --- a/legacy/docs/templates/documentation/base.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - - diva.js documentation — {{ doc_section|default:"Home" }} - - - {% include "header.html" %} -
      - {% include "documentation/sidebar.html" %} -
      - {% include "browse_links.html" %} -
      - - {% if doc_section %} -

      {{ doc_section }}

      - {% endif %} - - {% block content %}{% endblock %} - - {% autoescape off %} - {% if doc_children %} -
        - {{ doc_children|unordered_list }} -
      - {% endif %} - {% endautoescape %} - -
      - {% include "browse_links.html" %} -
      - - diff --git a/legacy/docs/templates/documentation/configurable_settings.html b/legacy/docs/templates/documentation/configurable_settings.html deleted file mode 100644 index e151c9a9..00000000 --- a/legacy/docs/templates/documentation/configurable_settings.html +++ /dev/null @@ -1,25 +0,0 @@ -{% load extras %} - -
      - -
      - -{% for setting in configurable_settings %} -

      {{ setting.name }}

      -
        -
      • Mandatory: {% if setting.mandatory %}Yes{% else %}No{% endif %}
      • - {% if not setting.mandatory %} -
      • Default value: {{ setting.default }}
      • -
      • Comment (in the code): {{ setting.comment }}
      • - {% endif %} -
      - -{% show setting.filename %} - -

      Back to settings list

      - -{% endfor %} diff --git a/legacy/docs/templates/documentation/other_settings.html b/legacy/docs/templates/documentation/other_settings.html deleted file mode 100644 index 98a5ff80..00000000 --- a/legacy/docs/templates/documentation/other_settings.html +++ /dev/null @@ -1,22 +0,0 @@ -{% load extras %} - -
      - -
      - -{% for setting in other_settings %} -

      {{ setting.name }}

      -
        -
      • Initial value: {{ setting.default }}
      • -
      • Comment (in the code): {{ setting.comment }}
      • -
      - -{% show setting.filename %} - -

      Back to settings list

      - -{% endfor %} diff --git a/legacy/docs/templates/documentation/private_functions.html b/legacy/docs/templates/documentation/private_functions.html deleted file mode 100644 index 3ea524af..00000000 --- a/legacy/docs/templates/documentation/private_functions.html +++ /dev/null @@ -1,18 +0,0 @@ -{% load extras %} - -
      - -
      - -{% for function in private_functions %} -

      {{ function.name }} View code »

      - -{% show function.filename %} - -

      Back to list of private functions

      - -{% endfor %} diff --git a/legacy/docs/templates/documentation/public_functions.html b/legacy/docs/templates/documentation/public_functions.html deleted file mode 100644 index 4459cea2..00000000 --- a/legacy/docs/templates/documentation/public_functions.html +++ /dev/null @@ -1,18 +0,0 @@ -{% load extras %} - -
      - -
      - -{% for function in public_functions %} -

      {{ function.name }} View code »

      - -{% show function.filename %} - -

      Back to list of public functions

      - -{% endfor %} diff --git a/legacy/docs/templates/documentation/sidebar.html b/legacy/docs/templates/documentation/sidebar.html deleted file mode 100644 index b73eb509..00000000 --- a/legacy/docs/templates/documentation/sidebar.html +++ /dev/null @@ -1,5 +0,0 @@ -{% autoescape off %} -
        - {{ doc_links|unordered_list }} -
      -{% endautoescape %} diff --git a/legacy/docs/templates/download_button.html b/legacy/docs/templates/download_button.html deleted file mode 100644 index dc285a78..00000000 --- a/legacy/docs/templates/download_button.html +++ /dev/null @@ -1,10 +0,0 @@ - diff --git a/legacy/docs/templates/download_links.html b/legacy/docs/templates/download_links.html deleted file mode 100644 index e59bbb60..00000000 --- a/legacy/docs/templates/download_links.html +++ /dev/null @@ -1,26 +0,0 @@ - diff --git a/legacy/docs/templates/examples_grid.html b/legacy/docs/templates/examples_grid.html deleted file mode 100644 index 89f5a17b..00000000 --- a/legacy/docs/templates/examples_grid.html +++ /dev/null @@ -1,32 +0,0 @@ -
      -
      - - - -

      - The standalone viewer, with mostly default settings. -

      -
      - - - -

      - The viewer integrated within a page, with mostly default settings. -

      -
      - - - -

      - A dual-viewer setup. -

      -
      - - - -

      - The Salzinnes Antiphonal. Uses a heavily customised version of diva.js. - Has search functionality, chant information, and a different interface. -

      -
      -
      diff --git a/legacy/docs/templates/footer.html b/legacy/docs/templates/footer.html deleted file mode 100644 index a2eaf5f9..00000000 --- a/legacy/docs/templates/footer.html +++ /dev/null @@ -1,8 +0,0 @@ -
      -
      - - - - diff --git a/legacy/docs/templates/header.html b/legacy/docs/templates/header.html deleted file mode 100644 index 09ac36bd..00000000 --- a/legacy/docs/templates/header.html +++ /dev/null @@ -1,11 +0,0 @@ - diff --git a/legacy/docs/templates/normal_footer.html b/legacy/docs/templates/normal_footer.html deleted file mode 100644 index 04f5b844..00000000 --- a/legacy/docs/templates/normal_footer.html +++ /dev/null @@ -1 +0,0 @@ - diff --git a/legacy/docs/templates/normal_header.html b/legacy/docs/templates/normal_header.html deleted file mode 100644 index bbc37c2c..00000000 --- a/legacy/docs/templates/normal_header.html +++ /dev/null @@ -1,2 +0,0 @@ -{% include "header.html" %} -
      diff --git a/legacy/docs/templates/screenshots.html b/legacy/docs/templates/screenshots.html deleted file mode 100644 index 034f312e..00000000 --- a/legacy/docs/templates/screenshots.html +++ /dev/null @@ -1,49 +0,0 @@ -